Skip to content

Instantly share code, notes, and snippets.

@juemura
Last active July 2, 2017 01:55
Show Gist options
  • Save juemura/eee88c4518678cbb1f60571b0955ecc9 to your computer and use it in GitHub Desktop.
Save juemura/eee88c4518678cbb1f60571b0955ecc9 to your computer and use it in GitHub Desktop.
Cheat sheet for Android Game Design 101 (Mission Bit - Summer 2017)

Resources

Images

Buttons

Java

Git/GitHub - Quick Reference Sheet:

Sync your code - get everybody's updates:

  1. $ cd Desktop/Projects/summer17-android
  2. $ git checkout master
  3. $ git pull upstream master
  4. $ git push origin master

Before you start working on a feature:

  1. $ git checkout -b branch_name

When you code, when you have a contribution:

  1. $ git status
  2. $ git add file_name or $ git rm file_name
  3. $ git commit -m "descriptive message of what you did"
  4. $ git push origin branch_name
  5. Send PR and ask for reviews.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment