Mission Bit - Fall 2017
- 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_name
or$ git rm file_name
$ git commit -m "descriptive message of what you did"
$ git push origin branch_name
- Send PR and ask for reviews.