项目作者: robinvanpoppel

项目描述 :
Tool to create an authors file for git-tfs-clone to map TFS users to Git users
高级语言: C#
项目地址: git://github.com/robinvanpoppel/git-tfs-authors.git
创建时间: 2018-05-01T15:05:53Z
项目社区:https://github.com/robinvanpoppel/git-tfs-authors

开源协议:MIT License

下载


git-tfs-authors

Introduction

git-tfs-authors is a small utility to create an authors file, which you can use with the git-tfs clone command. It’ll create a file with entries in the form of.

  1. DOMAIN\123123 = Doe, John <john.doe@company.com>
  2. DOMAIN\234234 = Doe, Jane <jane.doe@company.com>

Synopsis

  1. Command line arguments
  2. -h, --help show this message and exit
  3. -a, --authors=VALUE the name of the output file
  4. -k, --keep-empty-email keep accounts without an e-mail address (default false)
  5. -s, --sort sort the entries in the output file (default false)
  6. -t, --tfs-server-uri=VALUE the uri of the tfs server (e.g. http://tfs:8080/tfs)
  7. Examples:
  8. GitTfsAuthors --tfs-server-uri http://tfs:8080/tfs
  9. GitTfsAuthors --tfs-server-uri http://tfs:8080/tfs --authors=output.txt
  10. GitTfsAuthors --tfs-server-uri http://tfs:8080/tfs --authors=output.txt --sort

Prerequisites

  • You’ll need Visual Studio 2017 or 2019 to build, because of the reference to Microsoft.TeamFoundation.Client.dll

See also