直接提交更改
通常,你必须先使用 git add
或 git rm
添加对索引的更改,然后才能进行更改。通过 -a
或 --all
选项自动将每个更改(到跟踪的文件)添加到索引,包括删除:
git commit -a
如果你还要添加提交消息,你可以执行以下操作:
git commit -a -m "your commit message goes here"
此外,你可以加入两个标志:
git commit -am "your commit message goes here"
你不一定需要一次提交所有文件。省略 -a
或 --all
标志并指定要直接提交的文件:
git commit path/to/a/file -m "your commit message goes here"
要直接提交多个特定文件,你还可以指定一个或多个文件,目录和模式:
git commit path/to/a/file path/to/a/folder/* path/to/b/file -m "your commit message goes here"