git如何撤销已经加入暂存区的文件
2018-11-11 本文已影响0人
EastwardFlow
在git add 命令后 如何撤销已经加入到暂存区的文件呢?
1.git reset HEAD -- . 撤销所有
2.git reset HEAD -- filename 撤销特定目标
3.git rm -cached filepath 将文件从缓存中删除
在git add 命令后 如何撤销已经加入到暂存区的文件呢?
1.git reset HEAD -- . 撤销所有
2.git reset HEAD -- filename 撤销特定目标
3.git rm -cached filepath 将文件从缓存中删除