-
Notifications
You must be signed in to change notification settings - Fork 2
Branches
Vaakapallo edited this page Oct 14, 2013
·
2 revisions
- New branch is made with:
git branch branch_name
I just named mine vaakapallo. - 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. - When you do
git add
orgit commit
it only does them on that branch. - When you push for the first time, use
git push --set-upstream origin branch_name
. After that, justgit push
works. - You can do pull requests from the site to request for merges between your branch and the master.