http://blog.jobbole.com/tag/git/page/5/
git add -A
git commit -a
git commit -a --amend (进入前一个commit,不会重新生成一个commit)
git branch // 查看分支
git branch branch_name // 创建分支
git branch -d branch_name // 删除分支
git log
git log --oneline
git reflog
git fetch branch_name
git merge branch_name
git pull == git fetch + git merge
git push branch_name
git status // 查看状态
网友评论