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
#[error("Receiving objects from shallow remotes is prohibited due to the value of `clone.rejectShallow`")]
28
23
RejectShallowRemote,
29
-
#[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(", "))]
30
-
NoMapping{
31
-
refspecs:Vec<gix_refspec::RefSpec>,
32
-
num_remote_refs:usize,
33
-
},
34
24
#[error("Failed to consume the pack sent by the remove")]
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