We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c670485 commit 6c4dbeeCopy full SHA for 6c4dbee
gix/src/clone/fetch/mod.rs
@@ -37,6 +37,7 @@ pub enum Error {
37
},
38
#[error("Failed to update HEAD with values from remote")]
39
HeadUpdate(#[from] crate::reference::edit::Error),
40
+ #[cfg(feature = "revision")]
41
#[error("Failed to parse revision")]
42
RefParseError(#[from] crate::revision::spec::parse::single::Error),
43
#[error("The remote didn't have any ref that matched '{}'", wanted.as_ref().as_bstr())]
@@ -230,7 +231,6 @@ impl PrepareFetch {
230
231
P: crate::NestedProgress,
232
P::SubProgress: 'static,
233
{
-
234
let (repo, fetch_outcome) = self.fetch_only(progress, should_interrupt)?;
235
236
let mut checkout = crate::clone::PrepareCheckout {
0 commit comments