Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit 2a4a26b

Browse files
committed
Sync with 'maint'
Signed-off-by: Junio C Hamano <[email protected]>
2 parents 3ca26e8 + 7a0d8db commit 2a4a26b

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed

Documentation/RelNotes/1.8.1.5.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
Git 1.8.1.5 Release Notes
2+
=========================
3+
4+
Fixes since v1.8.1.5
5+
--------------------
6+
7+
* "git apply --summary" has been taught to make sure the similarity
8+
value shown in its output is sensible, even when the input had a
9+
bogus value.
10+
11+
* "git clean" showed what it was going to do, but sometimes ended
12+
up finding that it was not allowed to do so, which resulted in a
13+
confusing output (e.g. after saying that it will remove an
14+
untracked directory, it found an embedded git repository there
15+
which it is not allowed to remove). It now performs the actions
16+
and then reports the outcome more faithfully.
17+
18+
* "git clone" used to allow --bare and --separate-git-dir=$there
19+
options at the same time, which was nonsensical.
20+
21+
* "git cvsimport" mishandled timestamps at DST boundary.
22+
23+
* We used to have an arbitrary 32 limit for combined diff input,
24+
resulting in incorrect number of leading colons shown when showing
25+
the "--raw --cc" output.
26+
27+
* The smart HTTP clients forgot to verify the content-type that comes
28+
back from the server side to make sure that the request is being
29+
handled properly.
30+
31+
* "git help remote-helpers" failed to find the documentation.
32+
33+
* "gitweb" pages served over HTTPS, when configured to show picon or
34+
gravatar, referred to these external resources to be fetched via
35+
HTTP, resulting in mixed contents warning in browsers.
36+
37+
Also contains various documentation fixes.

Documentation/config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ advice.*::
182182
Advice shown when linkgit:git-merge[1] refuses to
183183
merge to avoid overwriting local changes.
184184
resolveConflict::
185-
Advices shown by various commands when conflicts
185+
Advice shown by various commands when conflicts
186186
prevent the operation from being performed.
187187
implicitIdentity::
188188
Advice on how to set your identity configuration when

t/t7512-status-help.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Grenoble INP Ensimag
66
#
77

8-
test_description='git status advices'
8+
test_description='git status advice'
99

1010
. ./test-lib.sh
1111

0 commit comments

Comments
 (0)