Can I see the currently checked out revision number in Tortoise SVN?

SvnVersion ControlTortoisesvn

Svn Problem Overview


I'd like to know what the currently checked out revision number is for a file or directory. Is there a way to do this in TortoiseSVN on Windows ?

Svn Solutions


Solution 1 - Svn

Right-click on the working directory in windows explorer, and select "Properties" (Not TortoiseSVN->Properties). You will see the Properties dialog, which will have a tab called "Subversion". Click on it, and you will see the version number, and other info.

Solution 2 - Svn

Not in tortoise but in command line.

svn info

will return what rev you are checked out on.

Solution 3 - Svn

TortoiseSVN -> Show log: The line in bold marks the current revision in your working copy.

Solution 4 - Svn

If you are using XP, change your Explorer windows to Details View. Navigate to an SVN-controlled folder then go to View > Choose Details and select the SVN columns for status/rev/etc.

Solution 5 - Svn

Thanks John, that's very useful but doesn't show the revision for the root folder of a project.

Now that you've pointed me in the right direction, I have found that I can right-click the folder, select properties and a TortoiseSVN tab appears which contains the revision number.

Solution 6 - Svn

Before "Change your Explorer windows to Details View. Navigate to an SVN-controlled folder then go to View > Choose Details and select the SVN columns for status/rev/etc."

you have to change your Windows Registry settings, adding this DWORD value

HKCU\Software\TortoiseSVN\ColumnsEveryWhere

and setting it to 1, as stated in the TortoiseSVN documentation.

Solution 7 - Svn

nice one John Sheehan. I always just right clicked on the root folder and selected tortoise-svn | view log .

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAdam PierceView Question on Stackoverflow
Solution 1 - SvnDimaView Answer on Stackoverflow
Solution 2 - SvnDevelopingChrisView Answer on Stackoverflow
Solution 3 - SvnnishantcopView Answer on Stackoverflow
Solution 4 - SvnJohn SheehanView Answer on Stackoverflow
Solution 5 - SvnAdam PierceView Answer on Stackoverflow
Solution 6 - SvnkdnpView Answer on Stackoverflow
Solution 7 - SvnDave NeeleyView Answer on Stackoverflow