Skip to content

Commit 260dba5

Browse files
committed
Sync with maint
2 parents 1b7b22b + 19534ee commit 260dba5

File tree

3 files changed

+75
-0
lines changed

3 files changed

+75
-0
lines changed

Documentation/RelNotes/1.8.1.6.txt

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Git 1.8.1.6 Release Notes
2+
=========================
3+
4+
Fixes since v1.8.1.5
5+
--------------------
6+
7+
* The code to keep track of what directory names are known to Git on
8+
platforms with case insensitive filesystems can get confused upon a
9+
hash collision between these pathnames and looped forever.
10+
11+
* When the "--prefix" option is used to "checkout-index", the code
12+
did not pick the correct output filter based on the attribute
13+
setting.
14+
15+
* Annotated tags outside refs/tags/ hierarchy were not advertised
16+
correctly to the ls-remote and fetch with recent version of Git.
17+
18+
* The logic used by "git diff -M --stat" to shorten the names of
19+
files before and after a rename did not work correctly when the
20+
common prefix and suffix between the two filenames overlapped.
21+
22+
* "git update-index -h" did not do the usual "-h(elp)" thing.
23+
24+
* perl/Git.pm::cat_blob slurped everything in core only to write it
25+
out to a file descriptor, which was not a very smart thing to do.
26+
27+
* The SSL peer verification done by "git imap-send" did not ask for
28+
Server Name Indication (RFC 4366), failing to connect SSL/TLS
29+
sites that serve multiple hostnames on a single IP.
30+
31+
* "git bundle verify" did not say "records a complete history" for a
32+
bundle that does not have any prerequisites.
33+
34+
Also contains various documentation fixes.

Documentation/RelNotes/1.8.2.1.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,41 @@ Git v1.8.2.1 Release Notes
44
Fixes since v1.8.2
55
------------------
66

7+
* Verification of signed tags were not done correctly when not in C
8+
or en/US locale.
9+
10+
* 'git commit -m "$msg"' used to add an extra newline even when
11+
$msg already ended with one.
12+
13+
* The "--match=<pattern>" option of "git describe", when used with
14+
"--all" to allow refs that are not annotated tags to be used as a
15+
base of description, did not restrict the output from the command
16+
to those that match the given pattern.
17+
18+
* An aliased command spawned from a bare repository that does not say
19+
it is bare with "core.bare = yes" is treated as non-bare by mistake.
20+
21+
* When "format-patch" quoted a non-ascii strings on the header files,
22+
it incorrectly applied rfc2047 and chopped a single character in
23+
the middle of it.
24+
25+
* "git archive" reports a failure when asked to create an archive out
26+
of an empty tree. It would be more intuitive to give an empty
27+
archive back in such a case.
28+
29+
* "git tag -f <tag>" always said "Updated tag '<tag>'" even when
30+
creating a new tag (i.e. not overwriting nor updating).
31+
32+
* "git cmd -- ':(top'" was not diagnosed as an invalid syntax, and
33+
instead the parser kept reading beyond the end of the string.
34+
35+
* Annotated tags outside refs/tags/ hierarchy were not advertised
36+
correctly to the ls-remote and fetch with recent version of Git.
37+
38+
* The code to keep track of what directory names are known to Git on
39+
platforms with case insensitive filesystems can get confused upon a
40+
hash collision between these pathnames and looped forever.
41+
742
* The logic used by "git diff -M --stat" to shorten the names of
843
files before and after a rename did not work correctly when the
944
common prefix and suffix between the two filenames overlapped.

Documentation/git-tag.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,12 @@ This option is only applicable when listing tags without annotation lines.
126126
linkgit:git-check-ref-format[1]. Some of these checks
127127
may restrict the characters allowed in a tag name.
128128

129+
<commit>::
130+
<object>::
131+
The object that the new tag will refer to, usually a commit.
132+
Defaults to HEAD.
133+
134+
129135
CONFIGURATION
130136
-------------
131137
By default, 'git tag' in sign-with-default mode (-s) will use your

0 commit comments

Comments
 (0)