Merge branch 'cn/diff-indent-no-longer-is-experimental'
authorJunio C Hamano <gitster@pobox.com>
Mon, 6 Nov 2017 04:11:27 +0000 (13:11 +0900)
committerJunio C Hamano <gitster@pobox.com>
Mon, 6 Nov 2017 04:11:27 +0000 (13:11 +0900)
Doc update.

* cn/diff-indent-no-longer-is-experimental:
diff: --indent-heuristic is no longer experimental

1  2 
Documentation/diff-options.txt
index a88c76741e781f5888fd467e17d02c633c87f15d,f028689f7c17d4278df19701f7113e18b154e025..dd0dba5b1d1951e762f0a43f1b2476bfa1029ad9
@@@ -63,7 -63,12 +63,12 @@@ ifndef::git-format-patch[
        Synonym for `-p --raw`.
  endif::git-format-patch[]
  
- include::diff-heuristic-options.txt[]
+ --indent-heuristic::
+       Enable the heuristic that shift diff hunk boundaries to make patches
+       easier to read. This is the default.
+ --no-indent-heuristic::
+       Disable the indent heuristic.
  
  --minimal::
        Spend extra time to make sure the smallest possible
@@@ -231,40 -236,6 +236,40 @@@ ifdef::git-diff[
  endif::git-diff[]
        It is the same as `--color=never`.
  
 +--color-moved[=<mode>]::
 +      Moved lines of code are colored differently.
 +ifdef::git-diff[]
 +      It can be changed by the `diff.colorMoved` configuration setting.
 +endif::git-diff[]
 +      The <mode> defaults to 'no' if the option is not given
 +      and to 'zebra' if the option with no mode is given.
 +      The mode must be one of:
 ++
 +--
 +no::
 +      Moved lines are not highlighted.
 +default::
 +      Is a synonym for `zebra`. This may change to a more sensible mode
 +      in the future.
 +plain::
 +      Any line that is added in one location and was removed
 +      in another location will be colored with 'color.diff.newMoved'.
 +      Similarly 'color.diff.oldMoved' will be used for removed lines
 +      that are added somewhere else in the diff. This mode picks up any
 +      moved line, but it is not very useful in a review to determine
 +      if a block of code was moved without permutation.
 +zebra::
 +      Blocks of moved text of at least 20 alphanumeric characters
 +      are detected greedily. The detected blocks are
 +      painted using either the 'color.diff.{old,new}Moved' color or
 +      'color.diff.{old,new}MovedAlternative'. The change between
 +      the two colors indicates that a new block was detected.
 +dimmed_zebra::
 +      Similar to 'zebra', but additional dimming of uninteresting parts
 +      of moved code is performed. The bordering lines of two adjacent
 +      blocks are considered interesting, the rest is uninteresting.
 +--
 +
  --word-diff[=<mode>]::
        Show a word diff, using the <mode> to delimit changed words.
        By default, words are delimited by whitespace; see