Git 06把握Git状态

2018-11-23  本文已影响0人  昵称啦啦啦

把握Git的状态

========

命令

代码

# 编辑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
上一篇下一篇

猜你喜欢

热点阅读