git add 命令用于把修改后的文件添加到暂存区。
git add [file1] [file2] ...
git add [dir]
git add .
以下范例我们添加两个文件:
$ touch README # 创建文件 README
$ touch hello.php # 创建文件 hello.php
$ ls
README hello.php
$ git status -s
?? README
?? hello.php
$
git status 命令用于查看项目的当前状态。
接下来我们执行 git add 命令来添加文件:
$ git add README hello.php
再次执行 git status,就可以看到这两个文件已经添加。
$ git status -s
A README
A hello.php
在项目中,我们经常使用 git add . 命令来添加新的文件或者修改过的文件。