Skip to content

Commit 26e5c5d

Browse files
committed
Git 1.7.10.3
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 69e8260 commit 26e5c5d

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

Documentation/RelNotes/1.7.10.3.txt

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ Fixes since v1.7.10.2
66

77
* The message file for German translation has been updated a bit.
88

9-
* "git status --porcelain" ignored "--branch" option by mistake. The
10-
output for "git status --branch -z" was also incorrect and did not
11-
terminate the record for the current branch name with NUL as asked.
12-
139
* Running "git checkout" on an unborn branch used to corrupt HEAD.
1410

1511
* When checking out another commit from an already detached state, we
@@ -21,6 +17,9 @@ Fixes since v1.7.10.2
2117
"checkout" phase; when run without any "--quiet" option, it should
2218
give progress to the lengthy operation.
2319

20+
* The directory path used in "git diff --no-index", when it recurses
21+
down, was broken with a recent update after v1.7.10.1 release.
22+
2423
* "log -z --pretty=tformat:..." did not terminate each record with
2524
NUL. The fix is not entirely correct when the output also asks for
2625
--patch and/or --stat, though.
@@ -29,4 +28,16 @@ Fixes since v1.7.10.2
2928
broken and gave undue precedence to configured log.date, causing
3029
"git stash list" to show "stash@{time stamp string}".
3130

31+
* "git status --porcelain" ignored "--branch" option by mistake. The
32+
output for "git status --branch -z" was also incorrect and did not
33+
terminate the record for the current branch name with NUL as asked.
34+
35+
* When a submodule repository uses alternate object store mechanism,
36+
some commands that were started from the superproject did not
37+
notice it and failed with "No such object" errors. The subcommands
38+
of "git submodule" command that recursed into the submodule in a
39+
separate process were OK; only the ones that cheated and peeked
40+
directly into the submodule's repository from the primary process
41+
were affected.
42+
3243
Also contains minor fixes and documentation updates.

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v1.7.10.2
4+
DEF_VER=v1.7.10.3
55

66
LF='
77
'

0 commit comments

Comments
 (0)