Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 it lists 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.

share|improve this question

15 Answers

up vote 502 down vote accepted

One way (preferred):

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

Another way:

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

index.html
javascript/application.js
javascript/ie6.js
  • The --no-commit-id suppresses the commit ID output.
  • 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).
share|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
1  
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 '12 at 14:57
3  
porcelain commands shouldn't be used in a script (git help),. Please use git diff-tree --no-commit-id --name-only -r <commit> instead – drizzt Jan 11 at 15:18
This isn't working for a merge commit. Message: Merge branch '<branch>' of bitbucket.org:xxx/xxx into master – redolent Mar 4 at 20:20
show 2 more comments

If you want to get list of changed files:

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

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

git ls-tree --name-only -r <commit-ish>
share|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
4  
Pass --no-commit-id to avoid printing the SHA1, like so: git diff-tree --no-commit-id --name-only -r <commit-ish> – John Aug 15 '12 at 20:00
show 1 more comment

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

share|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
3  
--name-only is plenty in most cases where i needed it; Therefore, upvoted the shortest solution (and the only one that i'd remember in 1 try). – Erik Dolor Aug 1 '12 at 21:42

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
share|improve this answer
1  
Just tried: Works fine in git bash on Windows too. – OregonGhost Aug 16 '12 at 16:52
Works fine and nice! Thanks! – Gtx Oct 31 '12 at 7:30
$ git log 88ee8^..88ee8 --name-only --pretty="format:"
share|improve this answer

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

git diff --name-status <SHA1> <SHA2> | cut -f2
share|improve this answer
Very nice, and simple. thanks! – Ben Dec 13 '11 at 22:44
2  
use --name-only and you can skip the cut command – Newtonx Jul 28 '12 at 0:54

Easier for scripting:

git diff --name-only <sha>^ <sha>

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

git diff --name-status <sha>^ <sha>

This works well with merge commits (but you should check if the output is what you are expecting).

As a bonus it doesn't print an empty blank line as the accepted solution.

share|improve this answer
Watch out, I think this compares <SHA> with the current HEAD, rather than showing the actual changes between <SHA> and its parent. – Michael Anderson Nov 7 '12 at 9:12
True! Not sure how I answered that :-?. I will improve the answer. Thanks. – vquintans Nov 7 '12 at 16:41
It works now! with both references to commit and previous commit. – vquintans Nov 7 '12 at 16:44

I like this:

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

I like to use

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

I personally use the combination of --stat and --oneline with the show command:

git show --stat --oneline HEAD
git show --stat --oneline b24f5fb
git show --stat --oneline HEAD^^..HEAD

If you do not like/want the addition/removal stats, you can replace --oneline with --name-only

git show --name-only --oneline HEAD
git show --name-only --oneline b24f5fb
git show --name-only --oneline HEAD^^..HEAD
share|improve this answer
This is great! It basically gives you the file summary that Github shows at the top of a commit view. Thanks. – trisweb Jan 11 at 17:17

List the files that changed in a commit:

git diff --name-only SHA1^ SHA1

This doesn't show log messages, extra newlines, or any other clutter. This works for any commit, not just the current one. Not sure why it hasn't quite been mentioned yet, so I'm adding it.

share|improve this answer

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.

share|improve this answer
Though it's way more effort than necessary, i don't think it should be downvoted; It still answers the question. Upvoted it. Please correct me i'm not supposed to correct it like that. – Erik Dolor Aug 1 '12 at 21:41

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]"

share|improve this answer

I use changed alias a quite often. To set it up:

git config --global alias.changed 'show --pretty="format:" --name-only'

then:

git changed (lists files modified in last commit)   
git changed bAda55 (lists files modified in this commit)
git changed bAda55..ff0021 (lists files modified between those commits)

Similar commands that may be useful:

git log --name-status --oneline (very similar, but shows what actually happened M/C/D)
git show --name-only
share|improve this answer

git show HEAD@{0} works fine for me

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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