using git - SkyroverTech/SkyroverCF GitHub Wiki
#####建立分支
git checkout -b <branch>
checkout用于切换分支,-b参数用以建立分支 例如:git checkout -b arvin
切回主分支 git checkout master
#####更新分支 完整的指令序列为:
git checkout <branch>
git pull origin <branch>
[git rebase master]
git add *
git commit -m "something"
git push origin <branch>