vote up 0 vote down star
1

I have two TFS branches that do not have a direct parent/child relationship in TFS. In a certain revision, 94 in my example, several items were deleted. I have been tasked with applying those deletes to the main branch. I'd like to do so through a baseless merge. I tried the following command to do so:

tf merge /baseless /recursive /version:94 .\programs\program1 ..\Release\programs\program1

Most of the items in the tree were marked as "merge", and some were marked as "merge edit". However, none of the items were deleted at the destination. On a whim i tried to merge over a single delete like so:

tf merge /baseless /recursive /version:94 .\programs\program1\source1.cs ..\Release\programs\program1\source1.cs

I got the following error message:

The item [TFS_PATH] does not exist at the specified version.

How do I do this? Is there a way to avoid making all those deletes myself?

flag

55% accept rate

2 Answers

vote up 1 vote down

The Patterns & Practices documentation implies that you have to resolve the merge conflicts yourself, once. (Caveat: I haven't tried this.)

EDIT: P.S. See also The morning after a TFS Baseless Merge.

link|flag
vote up 1 vote down

Nope, sorry, can't be done. Baseless merge is very dumb, amounting to little more than "take the contents of a folder and copy it somewhere else." As the name Baseless implies, there is no historical information with which to do a diff. In practice that means file contents propagates but not namespace changes (deletes, undeletes, renames). You can kinda-sorta diff file contents by matching up similar filenames and crossing your fingers, but diffing the namespace really does require knowing what the tree structure looked like last time the branches were synchronized, so TFS doesn't even bother.

That said, if you know the changeset # where the desired deletes were made, scripting out the deletes yourself is no biggie.

$tfs = Get-TfsServer -path . -all
$deletes = get-tfschangeset 94 | % { $_.changes } | ? { ($_.changetype -band $tfs.VCS_ChangeType::delete) -ne 0 } | % { $_.serveritem }
($deletes -replace "$/branch1" "$/branch2") | Add-TfsPendingChange -delete

[untested but should work]

link|flag
1  
You forgot a comma in the replace command (or clause or whatever its called). I'm still working on debugging it. – Justin Dearing Sep 11 at 16:33
Thanks, feel free to edit my post when you've got it working. – Richard Berg Sep 11 at 17:18
Richard, I don't have the reputation for that. I'm working on it though. – Justin Dearing Sep 12 at 1:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.