Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.64 KB

README.md

File metadata and controls

45 lines (33 loc) · 1.64 KB

Android Game Design 101

Mission Bit - Fall 2017

Resources

Tutorials

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.