与此问题非常类似的问题:Export only modified and added files with folder structure in Git
The given answer似乎只输出给定提交中更改的文件( $ commit_id ):
git diff-tree -r --no-commit-id --name-only --diff-filter=ACMRT $commit_id
我想获取commit1和commit2之间的已修改文件列表......这可能吗?
答案 0 :(得分:6)
您应该只能使用提交ID。例如:
git diff-tree -r --no-commit-id --name-only --diff-filter=ACMRT 218d182e 3ef44d29d
如果要在提交3ef44d29d
中包含更改,则需要通过ID或3ef44d29d^
指定其父级。
以下是我自己的一个项目的一些例子。在历史上倒退,我有以下提交:
1a443
fb4ae
88226
c46ba
我从各种命令中得到以下输出:
$ git diff-tree -r --name-only 1a443
1a443831fa9f797fedb397e900bd3d45e2093ea6
public/customers.en.html
$ git diff-tree -r --name-only fb4ae
fb4ae4af0ac473b8547ec1717d4b4172c0d634f4
public/checkout.en.html
$ git diff-tree -r --name-only 88226
88226fec6f1082b1dffd266d3e1bd0dc38cca520
public/finish.en.html
$ git diff-tree -r --name-only c46bac
c46bacddee7785599c2f026f53cd93357e8ad30d
public/index.php
我可以轻松地在c46bac
和1a443
之间进行所有更改:
$ git diff-tree -r --name-only c46bac 1a443
public/checkout.en.html
public/customers.en.html
public/finish.en.html
但请注意,它并未在提交public/index.php
中包含对c46bac
的更改。我们真正想要的是使用该提交的父作为比较的起点。
$ git diff-tree -r --name-only c46bac^ 1a443
public/checkout.en.html
public/customers.en.html
public/finish.en.html
public/index.php
答案 1 :(得分:0)
git diff --name-only commit1..commit2