git add . # 將所有修改過的工作文件提交暫存區(qū)
git commit-m[message] #提交暫存區(qū)到倉庫區(qū)
git push?
http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html

分支http://www.cnblogs.com/hf8051/p/5200576.html
Git鼓勵大量使用分支:
查看分支:git branch
創(chuàng)建分支:git branch
切換分支:git checkout
創(chuàng)建+切換分支:git checkout -b
合并某分支到當前分支:git merge
刪除分支:git branch -d