Git stage意思
在 Git 中,git stage
或者 git add
命令用於將檔案添加到暫存區(stage 或者 index)。暫存區是 Git 中的一個中間區域,用於暫存即將提交到倉庫中的檔案更改。
當你修改了檔案並想要將這些更改提交到倉庫時,你需要先使用 git add
命令將這些更改添加到暫存區。然後,你可以使用 git commit
命令將暫存區中的更改提交到倉庫。
以下是 git add
命令的基本用法:
git add [file1] [file2] ...
git add [directory]
git add -A # 或者 git add . ,將所有已跟蹤的檔案添加到暫存區
如果你想要查看哪些檔案被添加到了暫存區,可以使用 git status
命令。
如果你想要取消暫存某個檔案,可以使用 git reset HEAD [file]
命令。
請注意,git stage
實際上是 git add
的別名,因為 git add
是 Git 中最常用的命令之一,所以 Git 提供了一個簡短的別名 git stage
來代替它。