Developing seperate branch:
-
Clone repository
- git clone [email protected]:GamesCrafters/GamesmanGames.git
-
Create new branch to work on
- git branch your-branch
- git checkout your-branch
-
To push changes to your branch
- git push origin your-branch
-
To pull changes from master branch
- git checkout your-branch
- git fetch origin
- git merge origin/master
- solve any merge conflicts
- git push origin your-branch
-
Add your changes to master
- submit pull request on github