2016-09-14 7 views
-2

問題をトランクに関連する必要があり、実際に問題を回避するために行われる必要がありますどのようなトランクトータスSVNブランチはancestrally

への分岐コードをマージする際に登場しましたか? documenationから

+0

陳腐な答えはトランクにancestrally関連しているブランチをマージすることです。実際には、共通の祖先のSVN処理が貧弱であるため、あなたは 'from'と 'to'のリビジョンをマージすることができます。そして、共通の祖先がどこであるかを気にしません。 –

+0

@ポール - あなたはちょうど質問に答えることができますか?どのタイプのマージを参照していますか?それは完全に有効ですか? – dpen82

+0

残念ながら、あいまいな質問にはあいまいな回答があります。たびに "2-URLマージ"が動作します。コマンドラインを使用している場合は「svn help merge」と入力すると、そのプロセスが説明されます。 Tortoiseを使用している場合、このオプションを表示するには「2つの異なるツリーをマージする」を選択する必要があります。 –

答えて

1

私のコメントで述べたように:

This form is called a '2-URL merge': 

svn merge SOURCE1[@REV1] SOURCE2[@REV2] [TARGET_WCPATH] 

You should use this merge variant only if the other variants do not 
apply to your situation, as this variant can be quite complex to 
master. 

Two source URLs are specified, identifying two trees on the same 
branch or on different branches. The trees are compared and the 
difference from [email protected] to [email protected] is applied to the 
working copy of the target branch at TARGET_WCPATH. The target 
branch may be the same as one or both sources, or different again. 
The three branches involved can be completely unrelated. 

TARGET_WCPATH is a working copy path; if omitted, '.' is generally 
assumed. The special cases noted above in the 'complete' merge form 
also apply here. 

SOURCE1 and/or SOURCE2 can also be specified as a working copy path, 
in which case the merge source URL is derived from the working copy. 
関連する問題