diff options
author | Bo Yang <struggleyb.nku@gmail.com> | 2010-05-06 21:51:57 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-07 09:34:59 -0700 |
commit | 509de65f3b033838357b82d8ebc0ed73445a4fc5 (patch) | |
tree | cd0b0d75c39504d2280d4bf2a4c6508c9e263912 /Documentation/blame-options.txt | |
parent | 3bf7886705b4ea7189f046fa5258fdf6edcdbe23 (diff) | |
download | git-509de65f3b033838357b82d8ebc0ed73445a4fc5.tar.gz |
blame-options.txt: Add default value for `-M/-C` options.
Both `-M` and `-C` have default values and the <num> argument
the last `-C` option takes effect.
Signed-off-by: Bo Yang <struggleyb.nku@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/blame-options.txt')
-rw-r--r-- | Documentation/blame-options.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Documentation/blame-options.txt b/Documentation/blame-options.txt index d8205691c6..16e3c68576 100644 --- a/Documentation/blame-options.txt +++ b/Documentation/blame-options.txt @@ -90,9 +90,9 @@ of lines before or after the line given by <start>. running extra passes of inspection. + <num> is optional but it is the lower bound on the number of -alphanumeric characters that git must detect as moving +alphanumeric characters that git must detect as moving/copying within a file for it to associate those lines with the parent -commit. +commit. The default value is 20. -C|<num>|:: In addition to `-M`, detect lines moved or copied from other @@ -105,9 +105,11 @@ commit. looks for copies from other files in any commit. + <num> is optional but it is the lower bound on the number of -alphanumeric characters that git must detect as moving +alphanumeric characters that git must detect as moving/copying between files for it to associate those lines with the parent -commit. +commit. And the default value is 40. If there are more than one +`-C` options given, the <num> argument of the last `-C` will +take effect. -h:: --help:: |