You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: gix/src/remote/connection/fetch/error.rs
+5
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,11 @@ pub enum Error {
40
40
feature:&'staticstr,
41
41
description:&'staticstr,
42
42
},
43
+
#[error("None of the refspec(s) {} matched any of the {num_remote_refs} refs on the remote", refspecs.iter().map(|r| r.to_ref().instruction().to_bstring().to_string()).collect::<Vec<_>>().join(", "))]
44
+
NoMapping{
45
+
refspecs:Vec<gix_refspec::RefSpec>,
46
+
num_remote_refs:usize,
47
+
},
43
48
#[error("Could not write 'shallow' file to incorporate remote updates after fetching")]
0 commit comments