From 85fb10d737935b0af0a98ed9757d5179bb391b4d Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Tue, 26 Oct 2021 12:49:56 -0700 Subject: [PATCH] maint: fix up default remote branch handling --- Cargo.lock | 2 ++ Cargo.toml | 2 +- src/main.rs | 8 +++----- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fdef3d2..90e843f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "autocfg" version = "1.0.1" diff --git a/Cargo.toml b/Cargo.toml index f9a14a6..c68bcc3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gwar" -version = "0.0.1" +version = "0.1.0" authors = ["Matthew Dillon "] edition = "2018" diff --git a/src/main.rs b/src/main.rs index 661ae74..100044f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -78,11 +78,7 @@ impl Workspace { fetch_opts.remote_callbacks(callbacks); let mut builder = RepoBuilder::new(); - builder - .fetch_options(fetch_opts) - .remote_create(move |repo, _name, url| { - repo.remote_with_fetch(&self.origin.name, url, "+refs/*:refs/*") - }); + builder.fetch_options(fetch_opts); builder } @@ -96,6 +92,8 @@ impl Workspace { ) .expect(&format!("couldn't clone repo: {}", repo_name)); + repo.remote_rename("origin", &self.origin.name).unwrap(); + repo }