When using the doExport() method of svnkit i dont know the meaning of one parameter.

The javadocs dont help me either, i still dont get it you can find it here: http://svnkit.com/kb/javadoc/org/tmatesoft/svn/core/wc/SVNUpdateClient.html

What does the parameter "pegRevision" mean?

The docs say "pegRevision - the revision at which url will be firstly seen in the repository to make sure it's the one that is needed" but that doesnt really help me understand it.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Have a look at this great explanation. As taken from the javadoc you mentioned:

... the revision at which the url will be firstly seen in the repository to make sure it's the one that is needed ...

I believe this is normally @BASE or @HEAD. This is a revision provided to Subversion for the sole purpose of identifying a unique line of history. Because at most one versioned resource may occupy a path at any given time — or, more precisely, in any one revision—the combination of a path and a peg revision is all that is needed to refer to a specific line of history.

Try using HEAD:

org.tmatesoft.svn.core.wc.Revision.HEAD

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.