File tree Expand file tree Collapse file tree 3 files changed +272
-220
lines changed Expand file tree Collapse file tree 3 files changed +272
-220
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ Arguments:
39
39
Options:
40
40
--authors <authors> (REQUIRED) Path to an authors file with lines mapping TFVC usernames to
41
41
Git authors, e.g.: DOMAIN\John = John Doe <john@doe.com>
42
+ Auto-generates file at provided path with placeholders if
43
+ not found, eg: DOMAIN\John = John Doe <email>
42
44
--out-dir <out-dir> The directory path at which to create a new Git repository.
43
45
Defaults to the last segment in the root path under the
44
46
current directory.
Original file line number Diff line number Diff line change
1
+ namespace TfvcMigrator ;
2
+ public sealed class CommandLineException : Exception
3
+ {
4
+ public int ExitCode { get ; }
5
+ public CommandLineException ( string message , int exitCode = 1 ) : base ( message )
6
+ {
7
+ ExitCode = exitCode ;
8
+ }
9
+ }
You can’t perform that action at this time.
0 commit comments