Drop special handling of spaces

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
This commit is contained in:
Derrick Stolee 2020-02-24 11:18:11 -05:00
Родитель 1ff1a0184f
Коммит 5d7dfe274d
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -90,8 +90,6 @@ namespace Scalar.Common.Git
string filterArg = filterBlobs ? "--filter=blob:none" : string.Empty;
string dir = Paths.ConvertPathToGitFormat(targetDir);
dir.Replace(" ", "\\ ");
url.Replace(" ", "%20");
GitProcess git = new GitProcess(gitBinPath, workingDirectoryRoot: null);