CompSci 308
Fall 2019
Advanced Software Design and Implementation

GIT Workflow for Teams

I suggest the following workflow for your team projects to minimize merge conflicts. It is based on using one branch per person in the team and using Gitlab's Merge Request to share each person's changes with the team.

Clone the Project Repository

For team projects, you will want to clone the team repository directly (there should be no reason to fork your own copy) so that everyone is working on the same code base.

One Branch per Person

The advantage of using one branch per person (instead of each package or feature) is that it essentially assures that you are the only one using your branch, meaning you will only need to push your changes periodically so they are available in Gitlab and can be integrated into the master branch and you will not need to pull any new changes.

Integrate Your Changes with the Team

Merge Requests are a powerful tool provided by many online GIT repositories (including GitHub and BitBucket). It creates a web page representing the changes you intend to make to the repository in an easy to understand format that allows others to comment on your changes before accepting them. The request's web page also updates automatically if new changes are committed and pushed.

Integrate the Team's Changes with Your Code

This step is most likely to contain merge conflicts since you have been coding on your branch without worrying about what the rest of the team has been doing (so the longer you wait to push your code the more likely it is that you will cause conflicts).