📌  相关文章
📜  删除 git 删除的文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:59.750000             🧑  作者: Mango

代码示例3
git add .  => Add all (tracked and modified)/new files in the working tree.

git add -u => Add all modified/removed files which are tracked.

git add -A => Add all (tracked and modified)/(tracked and removed)/new files in the working tree.

git commit -a -m "commit message" - Add and commit modified/removed files which are tracked.