ani*_*kun 6 svn sharpsvn svn-update
SvnUpdateArgs asdf = new SvnUpdateArgs();
asdf.AllowObstructions = false;
asdf.Depth = SvnDepth.Infinity;
asdf.IgnoreExternals = false;
asdf.UpdateParents = true;
asdf.Revision = SvnRevision.Head;
asdf.Conflict += new EventHandler<SvnConflictEventArgs>(asdf_Conflict);
asdf.Notify += new EventHandler<SvnNotifyEventArgs>(asdf_Notify);
asdf.Progress += new EventHandler<SvnProgressEventArgs>(asdf_Progress);
SvnUpdateResult res;
client.Status(dir, new EventHandler<SvnStatusEventArgs>(Status_Hook));
if (client.Update(dir, asdf, out res))
{
Console.WriteLine("Updated");
Console.WriteLine(res.Revision);
Console.WriteLine(res.ResultMap);
}
static void asdf_Conflict(object sender, SvnConflictEventArgs e)
{
e.Choice = SvnAccept.TheirsFull;
}
Run Code Online (Sandbox Code Playgroud)
所以我看到更新已编写,但现有文件未更新.如果某些文件丢失 - 它们将被下载.但现有文件未更新.
我很生气,请帮助我,我的英雄!
小智 1
您必须设置 MergedFile 属性。如果没有,SharpSVN 将不会按照您的描述合并文件。
static void asdf_Conflict(object sender, SvnConflictEventArgs e)
{
e.Choice = SvnAccept.TheirsFull;
e.MergedFile = e.TheirFile;
}
Run Code Online (Sandbox Code Playgroud)