0

我正在使用连接到 Team Foundation Server 的 Visual Studio 2010。

以下命令适用于变更集:

tf changeset 12345

与搁置集一起使用的等效命令是什么?

4

1 回答 1

2

您在谈论TFS 命令行实用程序,并且想要搁置一组而不是变更集?

那么有shelveandshelvesets命令。

shelve 可以在这里找到并像这样使用:
tf shelve [/replace] [/comment:("comment"|@commentfile)] [shelvesetname] [/validate][/noprompt] [/login:username,[password]]

并且搁置集可以像这样使用:
tf shelvesets [/owner:ownername] [/format:(brief|detailed)] [/collection:TeamProjectCollectionUrl]] [/login:username,[password]] shelvesetname

于 2010-11-18T15:00:08.190 回答