Skip to content

Commit efe05b0

Browse files
committed
Merge branch 'maint' to sync with GIT 1.6.0.6
Signed-off-by: Junio C Hamano <[email protected]>
2 parents ec9f0ea + 718258e commit efe05b0

26 files changed

+185
-48
lines changed

Documentation/RelNotes-1.5.4.7.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
GIT v1.5.4.7 Release Notes
2+
==========================
3+
4+
Fixes since 1.5.4.7
5+
-------------------
6+
7+
* Removed support for an obsolete gitweb request URI, whose
8+
implementation ran "git diff" Porcelain, instead of using plumbing,
9+
which would have run an external diff command specified in the
10+
repository configuration as the gitweb user.

Documentation/RelNotes-1.5.5.6.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
GIT v1.5.5.6 Release Notes
2+
==========================
3+
4+
Fixes since 1.5.5.5
5+
-------------------
6+
7+
* Removed support for an obsolete gitweb request URI, whose
8+
implementation ran "git diff" Porcelain, instead of using plumbing,
9+
which would have run an external diff command specified in the
10+
repository configuration as the gitweb user.

Documentation/RelNotes-1.5.6.6.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
GIT v1.5.6.6 Release Notes
2+
==========================
3+
4+
Fixes since 1.5.6.5
5+
-------------------
6+
7+
* Removed support for an obsolete gitweb request URI, whose
8+
implementation ran "git diff" Porcelain, instead of using plumbing,
9+
which would have run an external diff command specified in the
10+
repository configuration as the gitweb user.

Documentation/RelNotes-1.6.0.6.txt

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
GIT v1.6.0.6 Release Notes
2+
==========================
3+
4+
Fixes since 1.6.0.5
5+
-------------------
6+
7+
* "git fsck" had a deep recursion that wasted stack space.
8+
9+
* "git fast-export" and "git fast-import" choked on an old style
10+
annotated tag that lack the tagger information.
11+
12+
* "git mergetool -- file" did not correctly skip "--" marker that
13+
signals the end of options list.
14+
15+
* "git show $tag" segfaulted when an annotated $tag pointed at a
16+
nonexistent object.
17+
18+
* "git show 2>error" when the standard output is automatically redirected
19+
to the pager redirected the standard error to the pager as well; there
20+
was no need to.
21+
22+
* "git send-email" did not correctly handle list of addresses when
23+
they had quoted comma (e.g. "Lastname, Givenname" <[email protected]>).
24+
25+
* Logic to discover branch ancestry in "git svn" was unreliable when
26+
the process to fetch history was interrupted.
27+
28+
* Removed support for an obsolete gitweb request URI, whose
29+
implementation ran "git diff" Porcelain, instead of using plumbing,
30+
which would have run an external diff command specified in the
31+
repository configuration as the gitweb user.
32+
33+
Also contains numerous documentation typofixes.

Documentation/SubmittingPatches

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,9 @@ D-C-O. Indeed you are encouraged to do so. Do not forget to
222222
place an in-body "From: " line at the beginning to properly attribute
223223
the change to its true author (see (2) above).
224224

225+
Also notice that a real name is used in the Signed-off-by: line. Please
226+
don't hide your real name.
227+
225228
Some people also put extra tags at the end.
226229

227230
"Acked-by:" says that the patch was reviewed by the person who

Documentation/diff-format.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Possible status letters are:
5858
be committed)
5959
- X: "unknown" change type (most probably a bug, please report it)
6060

61-
Status letters C and M are always followed by a score (denoting the
61+
Status letters C and R are always followed by a score (denoting the
6262
percentage of similarity between the source and target of the move or
6363
copy), and are the only ones to be so.
6464

Documentation/diff-generate-patch.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,15 @@ different from it.
143143

144144
A `-` character in the column N means that the line appears in
145145
fileN but it does not appear in the result. A `+` character
146-
in the column N means that the line appears in the last file,
146+
in the column N means that the line appears in the result,
147147
and fileN does not have that line (in other words, the line was
148148
added, from the point of view of that parent).
149149

150150
In the above example output, the function signature was changed
151151
from both files (hence two `-` removals from both file1 and
152152
file2, plus `++` to mean one line that was added does not appear
153-
in either file1 nor file2). Also two other lines are the same
154-
from file1 but do not appear in file2 (hence prefixed with ` +`).
153+
in either file1 nor file2). Also eight other lines are the same
154+
from file1 but do not appear in file2 (hence prefixed with `{plus}`).
155155

156156
When shown by `git diff-tree -c`, it compares the parents of a
157157
merge commit with the merge result (i.e. file1..fileN are the

Documentation/git-commit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ FROM UPSTREAM REBASE" section in linkgit:git-rebase[1].)
166166
'git-commit' if any paths are given on the command line,
167167
in which case this option can be omitted.
168168
If this option is specified together with '--amend', then
169-
no paths need be specified, which can be used to amend
169+
no paths need to be specified, which can be used to amend
170170
the last commit without committing changes that have
171171
already been staged.
172172

Documentation/git-diff-tree.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ include::diff-options.txt[]
4343
show tree entry itself as well as subtrees. Implies -r.
4444

4545
--root::
46-
When '--root' is specified the initial commit will be showed as a big
46+
When '--root' is specified the initial commit will be shown as a big
4747
creation event. This is equivalent to a diff against the NULL tree.
4848

4949
--stdin::

Documentation/git-fast-export.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ If the backend uses a similar \--import-marks file, this allows for
6565
incremental bidirectional exporting of the repository by keeping the
6666
marks the same across runs.
6767

68+
--fake-missing-tagger::
69+
Some old repositories have tags without a tagger. The
70+
fast-import protocol was pretty strict about that, and did not
71+
allow that. So fake a tagger to be able to fast-import the
72+
output.
73+
6874

6975
EXAMPLES
7076
--------

0 commit comments

Comments
 (0)