如何防止 git 使用 git 添加暂存已删除的文件。?

How to prevent git from staging deleted files with git add .?

我试图为我正在构建的 react-app 暂存多个文件,在使用 git add . 暂存项目文件后,我然后 运行 git status 它表明我我之前删除的暂存文件。我发现 git 已更改并且 git add . 现在暂存已删除的文件,所以我正在寻找一个只会暂存当前文件(而不是这些已删除文件)的命令。

git add --ignore-removal .

--ignore-removal

Update the index by adding new files that are unknown to the index and files modified in the working tree, but ignore files that have been removed from the working tree.

git-add Documentation