6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

TFコマンド早見表

Last updated at Posted at 2019-03-22

概要

プロジェクトでTFVCを使う機会がありました。
その時に意外とコマンドが探しても見つからないということがありましたので早見表を作成しました。
基本的に作業ベースでコマンドを調べたので随時更新します。
作業OS:Redhat7.6

早見表

  • ワークスペースの作成
tf workspace -new [ワークスペース名] -collection:[TFVCサーバのコレクションURL]
  • ワークスペースの削除
tf workspace -delete [ワークスペース名] -collection:[TFVCサーバのコレクションURL]
  • ワークスペース一覧確認
tf workspaces
  • ワークスペースとリポジトリ、ローカルとのマッピング
tf workfold -map [TFVCのフォルダ] -workspace:[ワークスペース名] [開発環境フォルダ]

※マッピングする開発フォルダは事前に作成済であること
※マッピング済のワークスペースに対しては上書きされる

  • ワークスペースのマッピング確認
tf workfold -workspace:[ワークスペース名]
  • チェックアウト
tf get
  • 変更セット履歴確認

履歴の一番古い1行のみ表示

tf history [開発環境フォルダ]

履歴の最新1行のみ表示

tf history [開発環境フォルダ] -stopafter:1

変更セット履歴全てを表示

tf history [開発環境フォルダ] -recursive

変更セットで編集されたファイル名まで表示

tf history [開発環境フォルダ] -format:detailed
6
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?