Visual-studio – Does tortoise or ankh svn have log dump capability

changelogsvnvisual studio

I'd like to include revision history in a menu system of my builds so that users can see it and it's auto-built from the svn repository before each build. My team doesn't have the core svn, only tortoise and ankh. I'd rather not have to go through configuration of it on each machine we use just for this feature if one of the tools we already have can do it.

I'm looking for something that does ANY full revision log dump like

svn log
svn log –xml
svn log -v

but built into ankh or tortoise.

i've been searching their documentation and websites with no luck so far, any ideas?

Best Answer

TortoiseSVN doesn’t have the ability to do this, and I doubt Ankh does either. The command line is the way to do it. If you don’t want to install a command-line client on every machine, you could consolidate your build process so that there is a dedicated build machine which does it.

Related Topic