Destroying deleted items
The following commands allow you to destroy files in TFS Source Control that are already marked as deleted. The first step is to find the specific filename with its deleted X postfix. Open a VS Command Prompt and navigate to your workspace mapped path. Use the tf dir command to find the files:
tf dir /deleted
Then use the tf destroy command. Note the absolute source path that doesn't necessarily match the first part of your local mapped path.
tf destroy "$/myProject/main branch/whatever.vb;X188"
Removing unwanted merge candidate changesets
tf merge "$/MyProject/Release Branch" "$/
MyProject /Main Branch" /discard /recursive /version:C5720~C5720
No comments:
Post a Comment