-
Go to the Project board.
-
Find an issue to work on
- The issues near the top are higher priority
-
Checkout a new branch to work on
git checkout master
- Checkout themaster
branchgit pull -r
- Updatemaster
by rebasinggit checkout -b the-issue-im-working-on
- Checkout a new branch to work on your isue
-
Make your changes and don't forget to commit often
-
Push your branch to the remote repository
git push -u origin the-issue-im-working-on
-
Get on GitHub and create a pull request.