vote up 0 vote down star

I am trying to use the Tortoise SVN command line utility TortoiseProc.exe. The docs suggest that a command line like this:

"TortoiseProc.exe" /command:diff afile.cpp`

should do a diff and display the results in the configured diff viewer (in my case Tortoise's own one), but instead nothing happens - the viewer is not launched & no error messages appear.

If I do:

svn diff afile.cpp

from the same directory, I get the normal Subversion diff text output.

Paths are OK, Tortoise works fine from the context menu, so what am I doing wrong?

flag

1 Answer

vote up 5 vote down check

You need to put /path: before the name of your source file:

"TortoiseProc.exe" /command:diff /path:afile.cpp

Tested on my TortoiseSVN.

See http://tortoisesvn.net/docs/nightly/TortoiseSVN_en/tsvn-automation.html

link|flag
I defer to those who type faster. – grammar31 Feb 16 at 14:33
lol :) Cheers dude. – Mark Pim Feb 16 at 14:47
Doh! Thanks very much! – zabzonk Feb 16 at 15:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.