如何在提交之前取消“git加法”?我错误地使用命令将文件添加到git:git add myfile.txt我还没跑呢git commit..是否有一种方法来撤消这些文件,这样这些文件就不会包含在提交中了吗?
3 回答
哈士奇WWW
TA贡献1799条经验 获得超6个赞
git add
git reset <file>
git reset
git reset HEAD <file>
git reset HEAD
HEAD
HEAD
“git重置”(没有选项或参数)用于在历史上没有任何提交时出错,但现在它给出了一个空索引(以匹配根本不存在的提交,您甚至不打开)。
慕标琳琳
TA贡献1830条经验 获得超9个赞
git status
use "git reset HEAD <file>..." to unstage
注意:最近的Git版本(1.8.4.x)更改了此消息:
(use "git rm --cached <file>..." to unstage)
- 3 回答
- 0 关注
- 536 浏览
添加回答
举报
0/150
提交
取消