Editing Tortiose SVN
How can I find the changelog in my repository without having to checkout everything? I'm looking for something that was removed a while ago, but I'm not sure when. I need to get a list of all changes such as the Revision Graph, but without having to check everything. Did it make sense?
a source to share
All svn commands take repository URLs as arguments, so you can work with them without checking them, for example:
svn log http: //my.repo.url/something
a source to share
You are looking for the Subversion log. You should be able to check one folder without going back to its subdirectories.
If you have been doing this from the command line, you can enter "svn log v http://example.org/repository " to see a list of changes and files.
a source to share
Ok, I don't think you need to check anything. You basically select TortoiseSVN> Repo Browser from the context menu and put the path into the SVN repository. After opening the repository, right-click on the main root folder and select Show Log. Should give you the complete changelog.
a source to share