Skip to content
Vaakapallo edited this page Oct 14, 2013 · 2 revisions
  1. New branch is made with: git branch branch_name I just named mine vaakapallo.
  2. Changing between branches happens with git checkout branch_name The main branch is called master. When you change between branches and go back to Unity, it notices changes and lets you reload. It doesn't move your view, but updates everything else.
  3. When you do git add or git commit it only does them on that branch.
  4. When you push for the first time, use git push --set-upstream origin branch_name. After that, just git push works.
  5. You can do pull requests from the site to request for merges between your branch and the master.
Clone this wiki locally