[Git] git 中 create patch
有不同的repository要sync的話可以用patch function
使用方法如下:
git format-patch 製作 patch
git format-patch 製作最新1筆 patch,
1 | git format-patch -1 |
git format-patch 製作最新3筆 patch,
1 | git format-patch -3 |
git format-patch 製作從 root 到最新 commit 的 patch,
1 | git format-patch --root |
git format-patch 製作從指定 commit 到結束 commit 的 patch,
1 | git format-patch abcd123..abcd456 |
留言
張貼留言