Skip to content

Commit

Permalink
CopyCommits: Fixed remote name
Browse files Browse the repository at this point in the history
  • Loading branch information
Iswenzz committed May 21, 2024
1 parent 9371955 commit 81f031e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GitTools/CLI/CopyCommits.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void Execute()
Git input = new(User, Email, InputRepository);
Git output = new(User, Email, OutputRepository);

string inputRepositoryName = Path.GetFileName(InputRepository);
string inputRepositoryName = Path.GetFileName(InputRepository).Replace(" ", "_");
CultureInfo culture = CultureInfo.CreateSpecificCulture("fr-FR");

// Get the user commits
Expand Down

0 comments on commit 81f031e

Please sign in to comment.