mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-24 13:45:00 +00:00
fix: changing the repository URL only changes the fetch URL if push URL using a different URL (#553)
This commit is contained in:
parent
93706449be
commit
c2b17ef9d0
2 changed files with 15 additions and 3 deletions
|
@ -118,11 +118,15 @@ namespace SourceGit.ViewModels
|
|||
|
||||
if (_remote.URL != _url)
|
||||
{
|
||||
var succ = new Commands.Remote(_repo.FullPath).SetURL(_name, _url);
|
||||
var succ = new Commands.Remote(_repo.FullPath).SetURL(_name, _url, false);
|
||||
if (succ)
|
||||
_remote.URL = _url;
|
||||
}
|
||||
|
||||
var pushURL = new Commands.Remote(_repo.FullPath).GetURL(_name, true);
|
||||
if (pushURL != _url)
|
||||
new Commands.Remote(_repo.FullPath).SetURL(_name, _url, true);
|
||||
|
||||
SetProgressDescription("Post processing ...");
|
||||
new Commands.Config(_repo.FullPath).Set($"remote.{_name}.sshkey", _useSSH ? SSHKey : null);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue