vote up 9 vote down star
3

I need to write a script that retrieves all files that were committed for a given SHA1. I have difficulty getting a nice formatted list of all files that were part of the commit.

I have tried: git show a303aa90779efdd2f6b9d90693e2cbbbe4613c1d

Although listing the files it also includes additional diff information that I don't need. I am hoping there is a simple git command that will provide such a list without me having to parse it from the above command.

flag

6 Answers

vote up 16 vote down check

This should get you a little closer to your goal.

$ git show --pretty="format:" --name-only bd61ad98

index.html
javascript/application.js
javascript/ie6.js

The --pretty argument specifies an empty format string to avoid the cruft at the beginning. The --name-only argument shows only the file names that were affected (Thanks Hank).

link|flag
Thank that works perfectly. – Philip Fourie Jan 8 at 18:03
vote up 5 vote down

I'll just assume that gitk is not desired for this. In that case, try git show --name-only <sha>.

link|flag
Thanks Hank. Ryan managed to use your example and got it to work I needed. – Philip Fourie Jan 8 at 18:04
vote up 0 vote down

A combination of "git show --stat" (thanks Ryan) and a couple of sed commands should trim the data down for you:

git show --stat <SHA1> | sed -n "/ [\w]\*|/p" | sed "s/|.\*$//"

That will produce just the list of modified files.

link|flag
vote up 5 vote down
$ git log 88ee8^..88ee8 --name-only --pretty="format:"
link|flag
vote up 2 vote down

If you want to get list of changed files:

git diff-tree --name-only -r <commit-ish>

You would get SHA1 of on first line, though.

If you want to get list of all files in a commit, you can use

git ls-tree --name-only -r <commit-ish>
link|flag
The ls-tree with --name-only does not seem to work on 1.6.4.4 or 1.6.3.3. Do you think this is a bug ? – krosenvold Oct 10 at 10:20
git ls-tree --name-only HEAD (the <commit-ish> parameter is **required**; in this example it is HEAD) works for me with git version 1.6.4.3 – Jakub Narębski Oct 10 at 12:20
It turns out the ordering of the parameters is significant here. The one in your post does not work, while the one in your response does work - at least until you update your post ;) – krosenvold Oct 10 at 15:17
Thanks @krosenvold, I updated my post... Some git commands are not rewritten using parseopt, so ordering of options and non-option agruments might be significant. – Jakub Narębski Oct 10 at 15:57
vote up 1 vote down

I like this:

git diff --name-status <SHA1> <SHA1>^
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.