feat: support _not_ renaming an origin

mostly this just has to do with workplace-related workflows and tools assuming
that `origin` exists as a remote alias, which is unfortunate but such is life.
This commit is contained in:
Matthew Ryan Dillon 2024-10-12 09:55:01 -04:00
parent e841e97200
commit 691e20b07e

View file

@ -92,7 +92,9 @@ impl Workspace {
)
.expect(&format!("couldn't clone repo: {}", repo_name));
repo.remote_rename("origin", &self.origin.name).unwrap();
if &self.origin.name != "origin" {
repo.remote_rename("origin", &self.origin.name).unwrap();
}
repo
}