1

I have cloned a svn project repo using git-svn. When I fetch commits, how do I check that there are no commits to be merged left for all branches from the fetch I did?

JonathanC
  • 197
  • 1
  • 1
  • 10

1 Answers1

1

You could, for a given branch, diff between the HEAd of that branch and what you have fetched:

git diff ..remotes/git-svn

or if you just want the file names:

git diff ..remotes/git-svn --name-status

with, as an example, git-svn the name of the remote svn repo.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250