This entry was posted on Wednesday, November 26th, 2008 at 3:15 pm and is filed under tools. You can follow any responses to this entry through the RSS 2.0 feed.
Both comments and pings are currently closed.
3 Responses to What svn revision was this branch created in?
Could something similar be used with the diff command? I’m using it to list all files modified in a given branch:
svn diff -r 5:HEAD –summarize …./mybranch
Where 5 is the “revision this branch was created in”. Looking for a way to do this without knowing the branch revision number. I tried some of the revision keyword args but they often require a local copy, which I don’t have in this case.
It took two years for my 2020 birthday present to materialize - fantastic Kraftwerk show yesterday in Geneva. I lov… twitter.com/i/web/status/1…3 days ago
svn log -v -r0:HEAD –stop-on-copy –limit 1
is the command to get exact result.
Could something similar be used with the diff command? I’m using it to list all files modified in a given branch:
svn diff -r 5:HEAD –summarize …./mybranch
Where 5 is the “revision this branch was created in”. Looking for a way to do this without knowing the branch revision number. I tried some of the revision keyword args but they often require a local copy, which I don’t have in this case.
Thanks Bertrand,
Much useful
Jacques
PS: did not get shrinivasan’s solution to work using svn 1.7.1