Reputation: 4664
Is there any way to figure out the checked out baseline version in TortoiseSVN?
That is, say I had checked out HEAD revision started working, there were a few checkins later. How do I find out the baseline version number that I am working on?
Upvotes: 2
Views: 2607
Reputation: 43575
Several ways to get that revision number:
With TortoiseSVN:
You can also use the SubWCRev tool (installed with TSVN):
SubWCRev.exe path\to\workingcopy
will output the information you need on the command line.
Or with the command line client, you could run
svnversion path/to/workingcopy
to get the same information.
Upvotes: 4