File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -98,8 +98,10 @@ commit.
98
98
files that were modified in the same commit. This is
99
99
useful when you reorganize your program and move code
100
100
around across files. When this option is given twice,
101
- the command additionally looks for copies from all other
102
- files in the parent for the commit that creates the file.
101
+ the command additionally looks for copies from other
102
+ files in the commit that creates the file. When this
103
+ option is given three times, the command additionally
104
+ looks for copies from other files in any commit.
103
105
+
104
106
<num> is optional but it is the lower bound on the number of
105
107
alphanumeric characters that git must detect as moving
Original file line number Diff line number Diff line change 9
9
--------
10
10
[verse]
11
11
'git blame' [-c] [-b] [-l] [--root] [-t] [-f] [-n] [-s] [-p] [-w] [--incremental] [-L n,m]
12
- [-S <revs-file>] [-M] [-C] [-C] [--since=<date>]
12
+ [-S <revs-file>] [-M] [-C ] [-C] [-C] [--since=<date>]
13
13
[<rev> | --contents <file> | --reverse <rev>] [--] <file>
14
14
15
15
DESCRIPTION
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ static const char *rsync_url(const char *url)
143
143
static struct ref * get_refs_via_rsync (struct transport * transport , int for_push )
144
144
{
145
145
struct strbuf buf = STRBUF_INIT , temp_dir = STRBUF_INIT ;
146
- struct ref dummy , * tail = & dummy ;
146
+ struct ref dummy = { 0 } , * tail = & dummy ;
147
147
struct child_process rsync ;
148
148
const char * args [5 ];
149
149
int temp_dir_len ;
You can’t perform that action at this time.
0 commit comments