6

現在、最新バージョンを入手する2つの方法を見つけました。TeamExplorerを使用するVisual Studioと、TFS Power ToolsShellExtensionsを使用するWindowsExplorerです。

TFSサーバーの場所は開発者とは大きく異なるため、TFSサーバーは非常に遅く、アプリケーション(VS / Explorer)でハングすることがよくあります。そこで、Get in consoleを実行して、オペレーティング中のOSの負荷を最小限に抑えたいと思います。

tf.exeとtfpt.exeの両方にGetのようなものが含まれていないようです。

他に何かありますか?

4

1 に答える 1

11

TF.exeにはgetコマンドがあります。以下はの出力ですTF.exe get -?

TF - Team Foundation Version Control Tool, Version 10.0.30319.1
Copyright (c) Microsoft Corporation.  All rights reserved.

Retrieves a read-only copy of a file from Team Foundation Server to the local
workspace and creates folders on disk to contain it.

tf get itemspec [/version:versionspec] [/all] [/overwrite] [/force] [/preview]
       [/recursive] [/remap] [/noprompt] [/login:username,[password]]

Versionspec:
    Date/Time         D"any .Net Framework-supported format"
                      or any of the date formats of the local machine
    Changeset number  Cnnnnnn
    Label             Llabelname
    Latest version    T
    Workspace         Wworkspacename;workspaceowner

特定のバージョンについては言及していませんが、最初のリリースからTF.exeに含まれていると確信しています。

ソリューションディレクトリの最新バージョンを取得するには、コマンドラインでマップされたディレクトリに移動し、次のコマンドを実行します。

tf.exe get * -recursive
于 2010-07-16T08:18:31.083 に答える