From af159fcf07c9cd9efd0b90b6320707b5e1943c21 Mon Sep 17 00:00:00 2001 From: Joscha Date: Fri, 18 Aug 2023 01:03:22 +0200 Subject: [PATCH] Track only branches by default --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 6103aa5..8fee796 100644 --- a/src/config.rs +++ b/src/config.rs @@ -27,7 +27,7 @@ impl Default for RawServerRepo { name: None, update: Duration::from_secs(60), fetch_url: None, - fetch_refspecs: vec!["+refs/*:refs/*".to_string()], + fetch_refspecs: vec!["+refs/heads/*:refs/heads/*".to_string()], } } }