Skip to content

Commit 009096a

Browse files
clean up readme and help section
1 parent af72447 commit 009096a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ Arguments:
3939
Options:
4040
--authors <authors> (REQUIRED) Path to an authors file with lines mapping TFVC usernames to
4141
Git authors, e.g.: DOMAIN\John = John Doe <john@doe.com>
42-
Auto-generated if not found with placeholders, eg:
43-
DOMAIN\John = John Doe <email>
42+
Auto-generates file at provided path with placeholders if
43+
not found, eg: DOMAIN\John = John Doe <email>
4444
--out-dir <out-dir> The directory path at which to create a new Git repository.
4545
Defaults to the last segment in the root path under the
4646
current directory.

src/TfvcMigrator/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static Task<int> Main(string[] args)
2121
new Option<string>("--authors")
2222
{
2323
IsRequired = true,
24-
Description = "Path to an authors file with lines mapping TFVC usernames to Git authors, e.g.: DOMAIN\\John = John Doe <john@doe.com>",
24+
Description = "Path to an authors file with lines mapping TFVC usernames to Git authors, e.g.: DOMAIN\\John = John Doe <john@doe.com> Auto-generates file at provided path with placeholders if not found, eg: DOMAIN\\John = John Doe <email>",
2525
},
2626
new Option<string?>("--out-dir") { Description = "The directory path at which to create a new Git repository. Defaults to the last segment in the root path under the current directory." },
2727
new Option<int?>("--min-changeset") { Description = "The changeset defining the initial commit. Defaults to the first changeset under the given source path." },

0 commit comments

Comments
 (0)