Re: [PATCH v8 8/8] diff: teach diff to display submodule difference with an inline diff

2016-08-19 Thread Jacob Keller
On Fri, Aug 19, 2016 at 2:52 PM, Junio C Hamano wrote: > Jacob Keller writes: > >> diff --git a/diff.h b/diff.h >> index ea5aba668eaa..192c0eedd0ff 100644 >> --- a/diff.h >> +++ b/diff.h >> @@ -112,6 +112,7 @@ enum diff_words_type { >> enum diff_submodule_format { >> DIFF_SUBMODULE_SHORT =

Re: [PATCH v8 8/8] diff: teach diff to display submodule difference with an inline diff

2016-08-19 Thread Junio C Hamano
Jacob Keller writes: > diff --git a/diff.h b/diff.h > index ea5aba668eaa..192c0eedd0ff 100644 > --- a/diff.h > +++ b/diff.h > @@ -112,6 +112,7 @@ enum diff_words_type { > enum diff_submodule_format { > DIFF_SUBMODULE_SHORT = 0, > DIFF_SUBMODULE_LOG, > + DIFF_SUBMODULE_INLINE_DIFF

[PATCH v8 8/8] diff: teach diff to display submodule difference with an inline diff

2016-08-18 Thread Jacob Keller
From: Jacob Keller Teach git-diff and friends a new format for displaying the difference of a submodule. The new format is an inline diff of the contents of the submodule between the commit range of the update. This allows the user to see the actual code change caused by a submodule update. Add