自動安裝和修正

提交更改時,可以指定將來將提交壓縮到另一個提交,這可以這樣做,

git commit --squash=[commit hash of commit to which this commit will be squashed to]

人們也可以使用 --fixup=[commit hash] 來修復。

也可以使用提交訊息中的單詞而不是提交雜湊,如下所示,

git commit --squash :/things

最近使用事物一詞的提交將被使用。

這些提交的訊息將以'fixup!''squash!'開頭,然後是提交訊息的其餘部分,這些提交將被壓縮到。

當使用 --autosquash 標誌時,應該使用 autosquash / fixup 功能。