I want to do a Diff between a locally commited change and between the SVN commited last change. i.e. HEAD and what is on SVN Master trunk.
what would be the suitable command?
Cheers
|
feedback
|
|
I assume you're talking about git-svn:
I don't know if | |||
|
feedback
|
|
The simplest way to do it would be making a diff between But if you cannot do a Then you declare a tracking branch and fetch that repo2 in your current repo:
and you can diff:
| |||
|
feedback
|
|
I tried this: git diff HEAD~3 HEAD and it worked as I wanted to see the diff between 3 locally committed changes and the HEAD on trunk. But was it the right way? It worked though! :) | |||
feedback
|