Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download Tortoise SVN 'Show Log' info into a file

I would like to download Tortoise SVN 'Show Log' info into a file (I need revision no, author, date, message and modified files list). What is the easiest way to do this? If this is not possible with Tortoise SVN, what is the appropriate SVN command to do that or is there any tool which does this?

like image 819
Praneeth Avatar asked Jan 19 '12 18:01

Praneeth


People also ask

How do I export svn log to excel?

export_svn_logs.bat echo Enter the URL of the repository from which to extract the logs. REM Execute SVN command to get all the commit logs from the defined repository. "svn.exe" must be in the path! REM Launch the generated file in Excel in "embedded" mode, with Current Directory as the start folder.

How do I download my TortoiseSVN repository?

Right click on the folder you want to download in, and open up tortoise-svn -> repo-browser . Enter in the URL above in the next window. right click on the trunk folder and choose either checkout (if you want to update from SVN later) or export (if you just want your own copy of that revision). Save this answer.

How do I view svn 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.


2 Answers

Or use command line:

svn log -v > branch.log
like image 132
Paker Avatar answered Nov 16 '22 04:11

Paker


This is a built-in feature of TortoiseSVN:

  1. Right click the folder and choose the "Show Log" command
  2. Shift-click all of the revisions you need
  3. Right-click and choose "Copy to clipboard"

Then, just paste into your favorite text editor.

like image 23
Adil B Avatar answered Nov 16 '22 03:11

Adil B