Git 06把握Git状态
2018-11-23 本文已影响0人
昵称啦啦啦
把握Git的状态
========
命令
- git status 查看当前工作文件夹的状态
- git checkout -- [file] 未添加到索引区 恢复上一个初始状态
- git reset Head [file] 添加到索引区 退出索引区
代码
# 编辑index.html
nano index.html
# 查看文件状态
git status
# 取消改变 当文件添加到索引区使用该命令无效
git checkout index.html
# 当文件添加到索引区退出索引区使用 git reset HEAD [file]
git reset HEAD index.html
# 然后再执行 git checkout 就可回退成功
git checkout index.html