Warning, /graphics/kst-plot/devel-docs/git_branching is written in an unsupported language. File is not indexed.

0001 http://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging
0002 
0003 Make a branch:
0004 git branch <newbranch>
0005 
0006 Switch to the branch
0007 git checkout <newbranch>
0008 
0009 Switch back to master
0010 git checkout master
0011 
0012 http://git-scm.com/book/en/v2/Git-Branching-Remote-Branches
0013 From newbranch, push the branch to origin
0014 git push origin <newbranch>
0015 
0016