Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to view all revisions in TortoiseSVN?

The TortoiseSVN "Show Log" option filters the revisions by date. It's cumbersome to alter those dates manually. How to view all revisions with minimal hassle?

like image 853
Jader Dias Avatar asked Nov 18 '11 17:11

Jader Dias


People also ask

How do I find my svn revision history?

To find information about the history of a file or directory, use the svn log command. svn log will provide you with a record of who made changes to a file or directory, at what revision it changed, the time and date of that revision, and, if it was provided, the log message that accompanied the commit.

How do I revert back to old revision in TortoiseSVN?

Right click on the selected revision(s), then select Context Menu → Revert changes from this revision. Or if you want to make an earlier revision the new HEAD revision, right click on the selected revision, then select Context Menu → Revert to this revision. This will discard all changes after the selected revision.

How do I get latest revision in svn?

"svn info --show-item revision" will give the current revision to which the current directory is updated.

How do I compare to previous version in svn?

If you want to see the difference between the last committed revision and your working copy, assuming that the working copy hasn't been modified, just right click on the file. Then select TortoiseSVN → Diff with previous version.


2 Answers

You must perform this at the root folder of you Repository.

  • Uncheck `Stop on copy/rename
  • Check Include merged revisions
  • At the bottom of the show Log dialog box, press the show all button.

Doing that will set the date range for you also.

enter image description here

Depending on the size of your repository this may take awhile. But you will get a list of every single revision this way.

enter image description here

like image 96
Doug Chamberlain Avatar answered Oct 06 '22 01:10

Doug Chamberlain


I'm really sorry but did you try to click Show All button? Or I misunderstood something

Also you may change the amount of revisions which will be showed at the beginning: Settings --> General --> Dialogs 1 --> Default number of messages

like image 20
VMykyt Avatar answered Oct 06 '22 00:10

VMykyt