We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot perform a meaningful fetch operation without any configured ref-specs
Successful fetch
git remote show origin -n seems to indicate that it happily won't update anything.
git remote show origin -n
let mut options = gix::remote::ref_map::Options::default(); options.extra_refspecs.push(gix::refspec::parse("adc83b19e793491b1c6ea0fd8b46cd9f32e592fc".as_ref().into(), gix::refspec::parse::Operation::Fetch).unwrap().to_owned()); prepare_fetch(gix::progress::Discard, options) // -> prepare::Error::MissingRefSpecs
The text was updated successfully, but these errors were encountered:
fix: Don't bail out if there are extra-refspecs. (#1562)
977b81b
Thanks a lot for reporting - a fix is on the way.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Current behavior 😯
Expected behavior 🤔
Successful fetch
Git behavior
git remote show origin -n
seems to indicate that it happily won't update anything.Steps to reproduce 🕹
The text was updated successfully, but these errors were encountered: