I'm iterating over the svn revisions from sourceRevision
to targetRevision
.
In each iteration, I wish to update my repository to the revision I'm current in.
Something like:
SvnClient svnClient = new SvnClient();
svnClient.Update ("C:\Svn", 26592);
Any ideas?