$ git add filename
增加到暂存区$ git commit -m 注释
提交更改$ git reset --hard HEAD^
返回一个版本 或一定的版本号$ git reflog
查看记录$ git checkout -b branchname
新建并且转移分支$ git branch
查看分支$ git checkout branchname
转移分支$ git branch -d branchname
删除分支$ git status
查看状态$ git add -A
添加自动追踪的文件到暂存区
-
Next PostApple Watch Human Interface Guidelines 笔记
-
Previous Postpython 正则表达式