2

我正在迭代从sourceRevisionto的 svn 修订targetRevision。在每次迭代中,我希望将我的存储库更新为我当前所在的版本。

就像是:

SvnClient svnClient = new SvnClient();

svnClient.Update ("C:\Svn", 26592);

有任何想法吗?

4

1 回答 1

3

你走在正确的轨道上。修订号可以通过SvnUpdateArgs对象传入:

SvnUpdateResult result;
SvnUpdateArgs args = new SvnUpdateArgs();

// If args.Revision is not set, it defaults to fetch the HEAD revision.
if (revision > 0)
{
    args.Revision = revision;
}

// Perform the update
using (SvnClient client = GetClient())
{
    client.Update(localPath, args, out result);
}
于 2013-06-03T13:22:43.010 回答