Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix PathUtil handling of spaces in file names #9305

Merged
merged 2 commits into from
Jun 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion GitCommands/PathUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ private static string ResolveRelativePath(string path, string relativePath)
Uri tempPath = new(path);
if (!string.IsNullOrEmpty(relativePath))
{
tempPath = new Uri(tempPath, relativePath);
tempPath = new Uri(tempPath, Uri.EscapeUriString(relativePath));
return Uri.UnescapeDataString(tempPath.LocalPath);
}

return tempPath.LocalPath;
Expand Down
2 changes: 1 addition & 1 deletion UnitTests/GitCommands.Tests/FullPathResolverTests.cs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions UnitTests/GitCommands.Tests/Helpers/PathUtilTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ public void Resolve(string path, string expected)
}

[TestCase(@"C:\WORK\", @"GitExtensions\", @"C:\WORK\GitExtensions\")]
[TestCase(@"C:\WORK\", @" file .txt ", @"C:\WORK\ file .txt ")]
[TestCase(@"\\wsl$\", @"Ubuntu\home\jack\work\", @"\\wsl$\Ubuntu\home\jack\work\")]
public void Resolve(string path, string relativePath, string expected)
{
Expand Down