Each developer should fork the primary Git repository for their work. All developers should then checkout a local copy of the master branch to begin work -
git clone [email protected]:username/GitTrial.git
git remote add upstream [email protected]:RTRShaders/GitTrial.git
For any work pull requests must be created for individual tasks and submitted for review -
git checkout master
git pull upstream master
git checkout -b <new-issue-branch> master
git push origin <new-issue-branch>