I thought this would be a simple task, but I'm currently unable to get it to work. There are built in functions such as <svn-update> etc. But not for revert it seems?

I have tried using the following but get an error that I have no supplied enough parameters.

<svn command="revert" destination="${root}" uri="${build.repos}" username="${build.user}" password="${build.pwd}"></svn>

Any help would be appreciated. Thanks.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Got it working by using the following -

<svn command="revert" destination="${root}" uri="${build.repos}" username="${build.user}" password="${build.pwd}">
    <arg line="-R"/>
    <arg line="revert"/>
    <arg line="${root}"/>
</svn>
link|improve this answer
feedback

There is a generic svn command where you can specify any command including revert:

<svn command="revert" ... />
link|improve this answer
That is the one I have tried and noted in my question, but it seems to not be working? Can't seem to find any documentation that indicates what parameters I need to pass. – Adam Cobb Feb 1 '10 at 10:51
1) What exception/error do you get back? 2) Here is the link for documentation: nantcontrib.sourceforge.net/release/0.85-rc2/help/tasks/… – Andrey Adamovich Feb 1 '10 at 10:54
"svn: Not enough arguments provided" I had previously found that documentation, thanks. But it only contains generic information for the SVN task, not it's usage for each command, i.e. revert. – Adam Cobb Feb 1 '10 at 10:55
This seems to be coming from SVN itself, not from the NANT task. – Andrey Adamovich Feb 1 '10 at 11:01
Which SVN version do you use? – Andrey Adamovich Feb 1 '10 at 11:01
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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