把新增加的文件使用 git add 添加进改动
使用 git commit 提交改动
使用 git log 查看提交的 commit id
使用命令把修改的文件打包
git diff-tree -r --no-commit-id --name-only 519ddbde9 | xargs tar -rf test.tar
也可以一次打包一个范围
git diff-tree -r --no-commit-id --name-only c1a546782 1f72b38ad | xargs tar -rf test.tar