[PATCH v2 0/3] textconv support for blame
From: Axel Bonnet <hidden>
Date: 2016-06-15 22:48:55
This is a patch series to implement textconv support for git blame. As textconv support has already been added to git diff, so we use textconv methods of diff. Here are the different changes: - make the diff textconv API public - add diff_options to blame (--textconv and --no-textconv) - perform textconv when we meet an object with textconv driver - t8006-blame-textconv.sh tests conversion works Axel Bonnet (3): textconv: make the API public textconv: support for blame t/t8006: test textconv support for blame builtin/blame.c | 82 +++++++++++++++++++++++++++++++++++++-------- diff.c | 12 ++---- diff.h | 8 ++++ t/t8006-blame-textconv.sh | 80 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 160 insertions(+), 22 deletions(-) create mode 100755 t/t8006-blame-textconv.sh