Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 529 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 529 Bytes

GamesmanGames

Developing seperate branch:

  1. Clone repository

  2. Create new branch to work on

    • git branch your-branch
    • git checkout your-branch
  3. To push changes to your branch

    • git push origin your-branch
  4. 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
  5. Add your changes to master

    • submit pull request on github