We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e25ab04 commit c47f819Copy full SHA for c47f819
1 file changed
src/Commands/Clone.cs
@@ -14,7 +14,7 @@ public Clone(string ctx, string path, string url, string localName, string sshKe
14
builder.Append("clone --progress --verbose ");
15
if (!string.IsNullOrEmpty(extraArgs))
16
builder.Append(extraArgs).Append(' ');
17
- builder.Append(url).Append(' ');
+ builder.Append(url.Quoted()).Append(' ');
18
if (!string.IsNullOrEmpty(localName))
19
builder.Append(localName.Quoted());
20
0 commit comments