Unstage 暫存檔案
通常,要刪除使用 git reset
提交暫存的檔案,reset
根據提供給它的引數有很多功能。要完全取消暫存所有已暫存的檔案,我們可以使用 git 別名建立一個使用 reset
的新別名,但現在我們不需要記住為 reset
提供正確的引數。
git config --global alias.unstage "reset --"
現在,你要隨時 unstage 級檔案型別 git unstage
,你是好去。
通常,要刪除使用 git reset
提交暫存的檔案,reset
根據提供給它的引數有很多功能。要完全取消暫存所有已暫存的檔案,我們可以使用 git 別名建立一個使用 reset
的新別名,但現在我們不需要記住為 reset
提供正確的引數。
git config --global alias.unstage "reset --"
現在,你要隨時 unstage 級檔案型別 git unstage
,你是好去。