tags:

views:

180

answers:

3

How I can see only the files that diverge between two branches?

A: 

Sounds like you need to find the Git equivelent to bk changes -R <branch> or bk changes -L <branch> which has bitkeeper tell you any change sets that are part of your local but not remote and vice versa.

Sorry I haven't really used Git extensively :(

Dmitriy Likhten
+3  A: 

You can use

git diff --name-only

to should only the names of the diverging files. Add to this command the commit SHA of the latest commit in your other branch

Dominik
+5  A: 
$ git diff --name-only branch1 branch2
MikeSep