这篇文章上次修改于 2024 天前,可能其部分内容已经发生变化,如有疑问可询问作者。 >git commit 报 nothing added to commit but untracked files present ,git ,看来git add -A 和 git add . 的区别,git add . 只会加已经track的working tree,而git add -A 根路径下的全部 1.首先尝试,发现不起作用 ```bash git add . git status ``` 2.使用如下,发现其作用了 ```bash git add --all ``` 3. summary--- git add -A 等于 git add . 加 git add -u ```bash git add -A stages all changes git add . stages new files and modifications, without deletions git add -u stages modifications and deletions, without new files ```
没有评论