From 691e20b07e7160d3c62e4c70d771b2518f4ea5a1 Mon Sep 17 00:00:00 2001 From: Matthew Ryan Dillon Date: Sat, 12 Oct 2024 09:55:01 -0400 Subject: [PATCH] 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. --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 100044f..0ba06df 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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 }