0

我想保存/导出两个选定提交之间不同的文件。以下命令显示修改后的文件...

$ git diff-tree --no-commit-id --name-only -r bd61ad98
index.html
javascript/application.js
javascript/ie6.js

但是有一种方法可以导出它们,保留文件结构吗?我只需要将修改后的文件保存在 Web 服务器中,而不是上传整个项目。

4

3 回答 3

1

请参阅git 存档

git diff-tree --no-commit-id --name-only -r $commit \
| xargs git archive -o changedfiles.tgz -- 

应该这样做。

于 2014-12-04T17:14:34.990 回答
1

这只是一个小型 shell 脚本的种子(将其保存在文件中并使文件可执行)。它不是一个完整的脚本。您需要检查$1命令行中是否提供了 ,否则会中止并显示错误消息(否则脚本的其余部分将因误导性错误消息而失败)。无论它位于何处以及从何处调用它,它都需要工作(它现在只有在您的当前目录是项目目录时才有效)。它需要以某种方式处理已删除的文件(它们是由git diff-tree命令返回的吗?)

#!/bin/bash

commit=$1            # get the commit hash from the command line (the first argument)
dest='/tmp'          # path to your destination directory (change it to match your setup)

# Cleanup on the destination directory
rm -rf $dest
mkdir $dest

# Copy the modified files
for i in $(git diff-tree --no-commit-id --name-only -r $commit); do
  cp --parents $i $dest/
done
于 2014-12-04T17:19:31.323 回答
1

利用

git diff-tree --no-commit-id --name-only -r bd61ad98 | git archive --format zip --output "proj-diff.zip" master -0 

-0 arg 用于未压缩的存档;我还没有测试过,但这应该可以

于 2014-12-04T17:45:13.457 回答