views:

58

answers:

2

I have two branches: master and bug1. I checked out bug1, did bunch of changes and multiple commits. How do I get a list of all files that were changed on the branch? I'm not interested in hashes, dates or any other commit related details. I just want to get a simple list of touched files.

+5  A: 
git diff --name-only master bug1
Cory Petosky
+1  A: 

From your master:

git diff --name-status BRANCH

See the git diff man page for details.

Tim Henigan