git提供了format-patch可以將之前所有commit的資訊輸出成檔案,這樣就比較好算專案貢獻度了XD

#從該commit開始輸出到最新狀態
git format-patch <commit-hash> -o /tmp/output

#也可以選擇輸出範圍(-1代表輸出到該commit下一個commit,依此類推-2為第二個)
git format-patch <commit-hash> -1 -o /tmp/output
Categories: Git