git2-rs icon indicating copy to clipboard operation
git2-rs copied to clipboard

DiffFormat::PatchHeader fails to print

Open altsem opened this issue 1 year ago • 0 comments

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.

altsem avatar Jul 04 '24 17:07 altsem