Track only branches by default

This commit is contained in:
Joscha 2023-08-18 01:03:22 +02:00
parent 7e0bf21223
commit af159fcf07

View file

@ -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()],
}
}
}