c# - Sharp SVN -- Merge not happening even with Merge Complete Status -
I am trying to merge the copy of the work and between a branch. In my case, we have 3 branches, 3 of them have the same solution, but there are parallel branches, so if anything changes in one branch, then it needs to be updated manually in other branches.
For this scenario, I was trying to automate this process and took part in the intense SVN API. Mergers were initially getting better, but later it is showing "full merge" but nothing has actually been merged.
Has anyone encountered this scenario before?
I am using the code given below for the merge:
SvnMergeArgs args = new SvnMergeArgs (); // add events. Args.Notify + = new event handler & lt; SvnNotifyEventArgs & gt; (Merge_Notify); Args.SvnError + = new event handler & lt; SvnErrorEventArgs & gt; (Merge_Error); Args.Cancel + = new event handler & lt; SvnCancelEventArgs & gt; (Merge_Cancel); Args.Conflict + = New EventHeadler & lt; SvnConflictEventArgs & gt; (Merge_Confilct); Args.Depth = SvnDepth.Children; Args.Force = Wrong; Args.IgnoreAncestry = false; Args.RecordOnly = True; // Calling fast SVN merge function client. Connect (). Merge (TargetWC, SourceUri, logs.Range (), args);
After applying the cancellation incident, I came to know that this incident goes to the cancellation and then in the end it says "merge complete". But first it used to make a proper merge!
Comments
Post a Comment