mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-23 13:14:59 +00:00
fix: support encoded url in remote (#938)
This commit is contained in:
parent
018a32b95b
commit
84533599f1
2 changed files with 3 additions and 3 deletions
|
@ -152,7 +152,7 @@ namespace SourceGit.Native
|
|||
|
||||
public void OpenBrowser(string url)
|
||||
{
|
||||
var info = new ProcessStartInfo("cmd", $"/c start {url}");
|
||||
var info = new ProcessStartInfo("cmd", $"/c start \"\" \"{url}\"");
|
||||
info.CreateNoWindow = true;
|
||||
Process.Start(info);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue