We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c6de02 + 56bde6b commit 359ac31Copy full SHA for 359ac31
Readme.md
@@ -39,6 +39,8 @@ Arguments:
39
Options:
40
--authors <authors> (REQUIRED) Path to an authors file with lines mapping TFVC usernames to
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>
44
--out-dir <out-dir> The directory path at which to create a new Git repository.
45
Defaults to the last segment in the root path under the
46
current directory.
src/TfvcMigrator/CommandLineException.cs
@@ -0,0 +1,9 @@
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
+}
0 commit comments