直接提交更改
通常,你必須先使用 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"