The following example merges changes from HelloWorld_beta1 that have not been merged into HelloWorld_RTM.
|
c:\projects>tf merge HelloWorld_beta1 HelloWorld_RTM /recursive |
The following example merges changeset 137 into branch2.
|
c:\projects>tf merge /version:C137~C137 branch1 branch2 /recursive |
The following example prints a list of the changesets in branch1 that have not been merged into branch2.
|
c:\projects>tf merge /candidate branch1 branch2 /recursive |
The following example prints a list of changesets in branch2 that have not been merged back into branch1.
|
c:\projects>tf merge /candidate branch2 branch1 /recursive |
The following example discards changeset 137 as a candidate for merging into branch2.
|
c:\projects>tf merge /discard /version:C137~C137 branch1 branch2 /recursive |