Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 ?

like image 938
Adam Pierce Avatar asked Sep 18 '08 03:09

Adam Pierce


People also ask

What is revision number in svn?

As you saw in the section called “Revisions”, revision numbers in Subversion are pretty straightforward—integers that keep getting larger as you commit more changes to your versioned data.

How do I check TortoiseSVN?

Right click on the checked out folder, then use TortoiseSVN → Update to Revision and select Choose items.... This opens the same dialog that was available in the original checkout and allows you to select or deselect items to include in the checkout.

How do you find the difference between two svn revisions?

Display the differences between two paths. The ways you can use svn diff are: Use just svn diff'to display local modifications in a working copy. Display the changes made to TARGET s as they are seen in REV between two revisions.


2 Answers

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.

like image 104
Dima Avatar answered Sep 28 '22 05:09

Dima


Not in tortoise but in command line.

svn info 

will return what rev you are checked out on.

like image 25
DevelopingChris Avatar answered Sep 28 '22 03:09

DevelopingChris