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
It seems that version 0.19.0 broke printing PatchHeader formatted diffs.
To reproduce (produces no lines):
fn main() { let repo = git2::Repository::open("..").unwrap(); let diff = repo.diff_index_to_workdir(None, None).unwrap(); diff.print( git2::DiffFormat::PatchHeader, |diffdelta, _maybe_hunk, line| { let line_content = std::str::from_utf8(line.content()).unwrap(); print!("{}", line_content); true }, ); }
Switching to version 0.18.3, or the format to git2::DiffFormat::PatchHeader seem to work as expected.
git2::DiffFormat::PatchHeader
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems that version 0.19.0 broke printing PatchHeader formatted diffs.
To reproduce (produces no lines):
Switching to version 0.18.3, or the format to
git2::DiffFormat::PatchHeader
seem to work as expected.The text was updated successfully, but these errors were encountered: