高洛峰2017-04-24 09:13:56
不知道你想怎麼命名。我來個最簡單的版本好了,附加提交值:
git log --follow --pretty=format:%H vimrc | xargs -I{} sh -c 'git show {}:vimrc > vimrc.{}'
天蓬老师2017-04-24 09:13:56
git log --follow file
可以得到這個檔案的所有歷史版本的 commit。
根據這些訊息,你寫個腳本將各版的文件內容提取出來再打包即可。
阿神2017-04-24 09:13:56
參考 @依雲 的答案
git log --follow --pretty=format:%H README.md|awk '{print "git show "":README.md > README.md."NR"."}'|sh