git status 查看当前git状态
git diff 查看当前改变
git reset --hard 342423 回退到某个版本
git reset HEAD 2.txt 重置当前文件(针对已add上去,未commit的)
git log 查看提交记录
git reflog 查看记录命令记录
git checkout -- 2.txt 丢弃当前修改,从新拉取
查看分支:git branch
创建分支:git branch <name>
切换分支:git checkout <name>
创建+切换分支:git checkout -b <name>
合并某分支到当前分支:git merge <name>
删除分支:git branch -d <name>