git add .出错解决方法

近期我和往常一样准备提交更改,但是出现了下面这个提示,以前没见过,然后我去查了一下,找到了解决方法

[root@y configure]# git add .
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 'hh.sh' that are
removed from your working tree are ignored with this version of Git.

* 'git add --ignore-removal <pathspec>', which is the current default,
  ignores paths you removed from your working tree.

* 'git add --all <pathspec>' will let you also record the removals.

Run 'git status' to check the paths you removed from your working tree.

解决方法很简单,把add .改成

git add -A

或者

git add -all

然后就行了

猜你喜欢

转载自blog.csdn.net/qq_36154886/article/details/82464782