美文网首页
git如何撤销已经加入暂存区的文件

git如何撤销已经加入暂存区的文件

作者: EastwardFlow | 来源:发表于2018-11-11 14:13 被阅读0次

    在git add 命令后 如何撤销已经加入到暂存区的文件呢?

    1.git reset HEAD -- . 撤销所有
    2.git reset HEAD -- filename 撤销特定目标
    3.git rm -cached filepath 将文件从缓存中删除

    相关文章

      网友评论

          本文标题:git如何撤销已经加入暂存区的文件

          本文链接:https://www.haomeiwen.com/subject/eqmxfqtx.html