git pull
git push
git status
git diff
git add 增加文件到暂存区
git commit
git reset —hard HEAD^^
git reset —hard 【commit id前七位】
git reflog 简洁的显示提交记录id
git branch 查看当前所处分之
git branch -b xxx 切换并创建分支
git checkout xx 切换分支
工作区 add
暂存区 commit
本地仓库 push
远程仓库