SVN version from bzr branch

Asked by Mike

For reporting purposed, I need a way to know what the corresponding svn revision number is for my bzr commit. Is there a way to get that information?

Question information

Language:
English Edit question
Status:
Solved
For:
Bazaar Subversion Plugin Edit question
Assignee:
No assignee Edit question
Solved by:
Jelmer Vernooij
Solved:
Last query:
Last reply:
Revision history for this message
Best Jelmer Vernooij (jelmer) said :
#1

On Wed, 2010-05-12 at 15:05 +0000, Mike wrote:
> New question #110736 on Bazaar Subversion Plugin:
> https://answers.launchpad.net/bzr-svn/+question/110736
>
> For reporting purposed, I need a way to know what the corresponding svn revision number is for my bzr commit. Is there a way to get that information?
If you have a fairly recent version of bzr-svn then bzr log will tell
you, e.g. :

bzr log -r42

where 42 is the bzr revision number. That will output a line starting
with "svn revno: ".

Cheers,

Jelmer

Revision history for this message
Mike (mnishiza) said :
#2

Thanks Jelmer Vernooij, that solved my question.