I run this command from the command line:

svn diff -r 90:93 URL --username name --password password --summarize

It keeps telling me that --summarize is unknown. Why? I searched the net and its being used. It works without --summarize, but I only need the paths, not the full info.

Thanks!

link|improve this question

61% accept rate
Does it say "--summarize is unknown" or "svn: invalid option: --summarize"? – Álvaro G. Vicario Jan 9 at 13:29
It says: invalid option: --summarize" – EOB Jan 9 at 13:31
Try svn diff --summarize -r 90:93 URL --username name --password password – Nick Garvey Jan 9 at 13:34
Nope, same problem.... – EOB Jan 9 at 13:37
Which version of svn? – Jan Hudec Jan 9 at 13:48
show 1 more comment
feedback

1 Answer

The --summarize option was added on 1.4.0. Subversion 1.3.2 is actually quite old (it was released on 2006).

Update: The SVN 1-Click Setup project looks abandoned. If you want to set up a Subversion server on a Windows-based computer, you'll probably prefer VisualSVN Server.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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