tfs2005

Import from Team Foundation Server 2005 into 2008

巧了我就是萌 提交于 2019-12-10 18:45:32
问题 We have an existing TFS 2005 install and a newer 2008. The 2008 server already has some newer projects on it but I am looking to move the older projects from 2005 onto this newer server. Does anyone know an easy way to do this and maintain the audit history rather than just break source control on the project and then add it to the 2008 server? thanks 回答1: I've used the TFS to TFS migration tool to do this: http://www.codeplex.com/tfstotfsmigration You do need to have a copy of SQL local to

Permanent deleting under TFS 2005

主宰稳场 提交于 2019-12-06 10:36:23
How can I permanently delete a folder/file under TFS 2005 source control? I know about the tf destroy command, but that only works with TFS 2008. I also know about the TFS PowerPack at CodePlex , but I want to know if there is a built-in tool to achieve this. There is no supported way to permanently destroy version control items other than upgrading to 2008 (or later). Technically you could edit the database by hand, but you are extremely likely to corrupt things since the schema is trickier than it looks and [intentionally] not documented. 来源: https://stackoverflow.com/questions/1769678

how to merge two changesets only (TFS)

匆匆过客 提交于 2019-11-28 07:36:04
You see 162489 and 162990, How can I merge them ? Martin Hyldahl I'm guessing that you want to merge only those two specific changesets into another branch. You cannot merge multiple changesets in one go, unless the changesets are in sequence. Using the tf command line tool you specify a range of versions by separating the version with a tilde character. tf merge /recursive /version:C162489~C162990 "$/SourceBranch" "$/TargetBranch" In this case the changes 162987 and 162967 will also be included. If you are using the UI in Visual Studio then the merge dialog will prevent you to select multiple