summaryrefslogtreecommitdiffstats
path: root/blame-options.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@kernel.org>2010-04-12 15:45:55 +0000
committerJunio C Hamano <junio@kernel.org>2010-04-12 15:45:55 +0000
commit0e8c0b027943f592a2cc9d3752b32aba046a9f19 (patch)
tree97976efdcee9f6e655e349cf31e50d26f17c0f23 /blame-options.txt
parent9587de99358a1debfc8b67662206da15e5472cd5 (diff)
downloadgit-htmldocs-0e8c0b027943f592a2cc9d3752b32aba046a9f19.tar.gz
Autogenerated HTML docs for v1.7.1-rc1-9-g4553d
Diffstat (limited to 'blame-options.txt')
-rw-r--r--blame-options.txt19
1 files changed, 10 insertions, 9 deletions
diff --git a/blame-options.txt b/blame-options.txt
index 4833cac4b..d8205691c 100644
--- a/blame-options.txt
+++ b/blame-options.txt
@@ -79,14 +79,15 @@ of lines before or after the line given by <start>.
of the --date option at linkgit:git-log[1].
-M|<num>|::
- Detect moving lines in the file as well. When a commit
- moves a block of lines in a file (e.g. the original file
- has A and then B, and the commit changes it to B and
- then A), the traditional 'blame' algorithm typically blames
- the lines that were moved up (i.e. B) to the parent and
- assigns blame to the lines that were moved down (i.e. A)
- to the child commit. With this option, both groups of lines
- are blamed on the parent.
+ Detect moved or copied lines within a file. When a commit
+ moves or copies a block of lines (e.g. the original file
+ has A and then B, and the commit changes it to B and then
+ A), the traditional 'blame' algorithm notices only half of
+ the movement and typically blames the lines that were moved
+ up (i.e. B) to the parent and assigns blame to the lines that
+ were moved down (i.e. A) to the child commit. With this
+ option, both groups of lines are blamed on the parent by
+ 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
@@ -94,7 +95,7 @@ within a file for it to associate those lines with the parent
commit.
-C|<num>|::
- In addition to `-M`, detect lines copied from other
+ In addition to `-M`, detect lines moved or copied from other
files that were modified in the same commit. This is
useful when you reorganize your program and move code
around across files. When this option is given twice,