关于git add:git添加了什么。

What does git add . (git add single dot) command do?

本问题已经有最佳答案,请猛点这里访问。

当使用句点(或句点,单点)向阶段添加文件时,我不知道git命令的含义:

1
$ git add .

这是做什么的?


当前目录中所有文件的增编/阶段。这是为了方便,如果你有一些文件,你不想用.gitignore添加。

这里有一个教学大纲。

如果你想更多地控制你如何加载所有文件/想知道如何加载


Adds all modified and new(untracked)files in the current directory and all subdirectories to the staining area(A.K.A.The index),thus preparing them to be included in the next git commit

任何文件匹配.gitignore中的模式都会被git add忽略。

如果你想滑雪的话,你可以加入-aFlag到git commit(尽管这将包括所有修改的文件,而不只是当前和亚方向的文件)。

关于删除文件的任何事情都不会发生。在索引中包括删除(和委员会一样),你需要做git add -A


它增加了所有随后的资源(关于你改变过的资源),under that folder to git's version control for commit.

你应该从这个优秀的瓦尔特鲁赫学到一些东西:http://try.github.io