$ 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 正则表达式