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.

link|improve this question

feedback

12 Answers

up vote 206 down vote accepted

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|improve this answer
Thank that works perfectly. – Philip Fourie Jan 8 '09 at 18:03
Thank you. Just perfect. – lucapette Apr 8 '11 at 21:03
This shows also all the files which have been untracked with git rm --cached <file>. This makes commit only a technical term in this case and showing a bunch of files (as part of the commit) is totally misleading because Git does not show whether a file were added or removed. – karatedog Mar 27 at 14:57
feedback

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|improve this answer
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 '09 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 '09 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 '09 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 '09 at 15:57
that works better. with git show --pretty="format:" you still have one blank line in beginning, which is not that big problem, but when using it in scripts you have to remove it. So ls-tree works better for me – NickSoft Apr 17 at 11:00
feedback

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

link|improve this answer
Thanks Hank. Ryan managed to use your example and got it to work I needed. – Philip Fourie Jan 8 '09 at 18:04
feedback
$ git log 88ee8^..88ee8 --name-only --pretty="format:"
link|improve this answer
feedback

I use this to get list of modified files between two changesets:

git diff --name-status <SHA1> <SHA2> | cut -f2
link|improve this answer
Very nice, and simple. thanks! – Ben Dec 13 '11 at 22:44
feedback

Recently I needed to list all changed files between two commits. So I used this (also *nix specific) command

git show --pretty="format:" --name-only START_COMMIT..END_COMMIT | sort | uniq

Hope this helps someone... don't badge me with "Necromancer" though :)

link|improve this answer
feedback

Easier for scripting:

git diff --name-only <sha>

Or as skiphoppy said, if you want also de status of the changed files:

git diff --name-status <sha>
link|improve this answer
feedback

I like this:

git diff --name-status <SHA1> <SHA1>^
link|improve this answer
feedback

I like to use

git show --stat <SHA1>^..<SHA2>
link|improve this answer
feedback

Display the log.

COMMIT can be blank ("") or the sha-1 or the sha-1 shortened.

git log COMMIT -1 --name-only

This will list just the files, very useful for further processing.

git log COMMIT -1 --name-only --pretty=format:"" | grep "[^\s]"

link|improve this answer
feedback

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|improve this answer
feedback
git show [commit sha1 or short abbrev]:

eg.

git show asd1x:
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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