- Git / GitHub Tutorial: https://gist.github.com/juemura/c354421701cd9d8c1e934f4c0932f4cb
- Main class repo: https://github.com/MissionBit/summer17-android
- Flappy Bird Tutorial: https://github.com/juemura/FlappyDemo/tree/missionBit
- Udacity exercises: https://github.com/juemura/ud405
Sync your code - get everybody's updates:
$ cd Desktop/Projects/summer17-android$ git checkout master$ git pull upstream master$ git push origin master
Before you start working on a feature:
$ git checkout -b branch_name
When you code, when you have a contribution:
$ git status$ git add file_nameor$ git rm file_name$ git commit -m "descriptive message of what you did"$ git push origin branch_name- Send PR and ask for reviews.