재우니의 블로그

TFS 환경 - 체크아웃 Check out 된 파일 File 및 사용자 User 들 확인하기

 

TFS 환경에서 체크아웃 된 파일 및 사용자들을 얻기 위함 입니다.

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Visual Studio 2019\Visual Studio Tools 폴더에 위치한 "Developer Command Prompt for VS 2019" 의 command 을 호출합니다. 

 

하나 이상의 작업 공간에서 보류중인 파일 및 폴더 변경 및 보류중인 변경 한 사용자에 대한 정보를 모두 표시합니다.

tf status /user:* /recursive
tf status /user:* /recursive /format:detailed

tf status /user:* /recursive >C:\temp\tfs.txt
tf status /user:* /recursive /format:detailed >C:\temp\tfs.txt

 

cmd 창에서 실행하여 얻은 결과값

$/Developer/Development/External/Solution/UnivDefault.Web/Areas/Admtower/Views/PaperJudgeFinal/ApplierList.cshtml;C7807
  사용자   : 홍길동
  날짜     : 2018년 6월 1일 금요일 오전 10:57:48
  잠금     : 체크 아웃
  변경     : 편집
  작업 영역: DESKTOP
  로컬 항목: [DESKTOP] D:\Developer\Development\External\Solution\UnivDefault.Web\Areas\Admtower\Views\PaperJudgeFinal\ApplierList.cshtml
  파일 형식: utf-8

$/Developer/Development/Solution/Intra.Web/Areas/ProjectManager/Views/GroupPjt/Create.cshtml;C7413
  사용자   : 홍길동
  날짜     : 2018년 4월 26일 목요일 오전 9:22:43
  잠금     : 체크 아웃
  변경     : 편집
  작업 영역: DESKTOP
  로컬 항목: [DESKTOP] D:\Developer\Development\Solution\Intra.Web\Areas\ProjectManager\Views\GroupPjt\Create.cshtml
  파일 형식: utf-8

변경 내용 665개

 

참고자료

docs.microsoft.com/en-us/azure/devops/repos/tfvc/status-command?view=azure-devops#examples

 

Status command - Azure Repos

Status command

docs.microsoft.com