feat: Add --prune option to git fetch command

This commit is contained in:
Kiril Videlov 2024-03-23 10:24:04 +01:00
parent a29c46de87
commit 32c57edaea
No known key found for this signature in database

View File

@ -286,7 +286,7 @@ where
Fut: std::future::Future<Output = Option<String>>,
Extra: Send + Clone,
{
let mut args = vec!["fetch", "--quiet"];
let mut args = vec!["fetch", "--quiet", "--prune"];
let refspec = refspec.to_string();