diff options
author | Kevin Ballard <kevin@sb.org> | 2010-09-27 16:58:26 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-29 13:18:04 -0700 |
commit | 37ab5156ae31ec81e3489406f23be6936a2a370c (patch) | |
tree | 280cabc021786a0e33e3413bf4d8b43a6fc247eb /Documentation/diff-options.txt | |
parent | 10ae7526bebb505ddddba01f76ec97d5f7b5e0e5 (diff) | |
download | git-37ab5156ae31ec81e3489406f23be6936a2a370c.tar.gz |
diff: add synonyms for -M, -C, -B
Add new long-form options --detect-renames[=<n>], --detect-copies[=<n>],
and --break-rewrites[=[<n>][/<m>]] as synonyms for the -M, -C, and -B
options (respectively).
Signed-off-by: Kevin Ballard <kevin@sb.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/diff-options.txt')
-rw-r--r-- | Documentation/diff-options.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt index e745a3ccdc..df37ccd365 100644 --- a/Documentation/diff-options.txt +++ b/Documentation/diff-options.txt @@ -207,9 +207,11 @@ endif::git-format-patch[] digits can be specified with `--abbrev=<n>`. -B:: +--break-rewrites[=[<n>][/<m>]]:: Break complete rewrite changes into pairs of delete and create. -M:: +--detect-renames[=<n>]:: ifndef::git-log[] Detect renames. endif::git-log[] @@ -220,6 +222,7 @@ ifdef::git-log[] endif::git-log[] -C:: +--detect-copies[=<n>]:: Detect copies as well as renames. See also `--find-copies-harder`. ifndef::git-format-patch[] |