Git commit 檔案的某幾個小部分修改

有時候想要 commit 某檔案的一小部分修改,一直不知道 git 有沒有這功能,結果是有的!

在 git add 後面接上-p--patch 再接檔名。

1
git add -p <file>

之後就會提示你哪段區塊要不要加入 stage area,按y加入, 按n不要加入。

參考
Commit only part of a file in Git - Stack Overflow
https://stackoverflow.com/questions/1085162/commit-only-part-of-a-file-in-git