Skip to content

Commit cfd1056

Browse files
committed
Sync with v1.8.4.2
2 parents f43bc33 + dcb11cc commit cfd1056

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

Documentation/RelNotes/1.8.4.2.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ Git v1.8.4.2 Release Notes
44
Fixes since v1.8.4.1
55
--------------------
66

7+
* "git clone" gave some progress messages to the standard output, not
8+
to the standard error, and did not allow suppressing them with the
9+
"--no-progress" option.
10+
11+
* "format-patch --from=<whom>" forgot to omit unnecessary in-body
12+
from line, i.e. when <whom> is the same as the real author.
13+
14+
* "git shortlog" used to choke and die when there is a malformed
15+
commit (e.g. missing authors); it now simply ignore such a commit
16+
and keeps going.
17+
18+
* "git merge-recursive" did not parse its "--diff-algorithm=" command
19+
line option correctly.
20+
721
* "git branch --track" had a minor regression in v1.8.3.2 and later
822
that made it impossible to base your local work on anything but a
923
local branch of the upstream repository you are tracking from.

Documentation/git.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@ unreleased) version of Git, that is available from 'master'
4343
branch of the `git.git` repository.
4444
Documentation for older releases are available here:
4545

46-
* link:v1.8.4.1/git.html[documentation for release 1.8.4.1]
46+
* link:v1.8.4.2/git.html[documentation for release 1.8.4.2]
4747

4848
* release notes for
49+
link:RelNotes/1.8.4.2.txt[1.8.4.2],
4950
link:RelNotes/1.8.4.1.txt[1.8.4.1],
5051
link:RelNotes/1.8.4.txt[1.8.4].
5152

sha1_file.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2514,7 +2514,6 @@ static int sha1_loose_object_info(const unsigned char *sha1,
25142514
return 0;
25152515
}
25162516

2517-
/* returns enum object_type or negative */
25182517
int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi)
25192518
{
25202519
struct cached_object *co;
@@ -2563,6 +2562,7 @@ int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi)
25632562
return 0;
25642563
}
25652564

2565+
/* returns enum object_type or negative */
25662566
int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
25672567
{
25682568
enum object_type type;

t/test-lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ trap 'die' EXIT
325325
. "$TEST_DIRECTORY/test-lib-functions.sh"
326326

327327
# You are not expected to call test_ok_ and test_failure_ directly, use
328-
# the text_expect_* functions instead.
328+
# the test_expect_* functions instead.
329329

330330
test_ok_ () {
331331
test_success=$(($test_success + 1))

0 commit comments

Comments
 (0)