Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Conflict filenames are included in auto-generated commit message.

Beside conflict files, if someone makes changes to other files in a merge commit, it is worth noticing the changes to trace why he makes such changes in a merge commit.

If no conflicts, a merge commit should have no real file changes, because each file follows either parent.

What git command line should I type?

I need changed file names only, not diff content.

share|improve this question

2 Answers

up vote 1 down vote accepted

git show --stat will display a summary of the file names touched by the merge commit itself.

share|improve this answer

If you git show a merge commit, it will show you only that merge commit's changes. Every other change produced by one of the "merged commits" will be shown by git showing that commit.

share|improve this answer
I need changed file names only, not diff content. – linquize Nov 19 '12 at 7:19

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.