美文网首页
git 报错解决

git 报错解决

作者: ArleyDu | 来源:发表于2016-11-29 09:14 被阅读157次

    warning: You ran 'git add' with neither '-A (--all)' or '--ignore-removal', whose behaviour will change in Git 2.0 with respect to paths you removed. Paths like 'thePathToFileIDeleted' that are removed from your working tree are ignored with this version of Git.

    'git add --ignore-removal ', which is the current default, ignores paths you removed from your working tree.
    'git add --all ' will let you also record the removals.
    Run 'git status' to check the paths you removed from your working tree.

    相关文章

      网友评论

          本文标题:git 报错解决

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