git reset HEAD使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git reset HEAD使用相关的知识,希望对你有一定的参考价值。
修改demo1.txt文件
vim demo1.txt
修改hello.php
vim hello.php
查看文件状态
git status -s
添加到缓存区
git add .
查看文件状态
git status -s
将hello.php从缓存区清除
git reset HEAD -- hello.php
查看文件状态
git status -s
提交文件
git commit -m ‘修改demo1‘
查看文件状态
git status -s
命令行输出
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1907146
以上是关于git reset HEAD使用的主要内容,如果未能解决你的问题,请参考以下文章
git reset HEAD 与 git reset --hard HEAD的区别