Skip to content

Commit f350082

Browse files
committed
Git 1.8.1.3
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 57ff170 commit f350082

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

Documentation/RelNotes/1.8.1.3.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ Fixes since v1.8.1.2
1212
* Command line completion code was inadvertently made incompatible with
1313
older versions of bash by using a newer array notation.
1414

15+
* Scripts to test bash completion was inherently flaky as it was
16+
affected by whatever random things the user may have on $PATH.
17+
18+
* A fix was added to the build procedure to work around buggy
19+
versions of ccache broke the auto-generation of dependencies, which
20+
unfortunately is still relevant because some people use ancient
21+
distros.
22+
1523
* We used to stuff "user@" and then append what we read from
1624
/etc/mailname to come up with a default e-mail ident, but a bug
1725
lost the "user@" part.
@@ -22,7 +30,18 @@ Fixes since v1.8.1.2
2230
* Attempt to "branch --edit-description" an existing branch, while
2331
being on a detached HEAD, errored out.
2432

33+
* "git cherry-pick" did not replay a root commit to an unborn branch.
34+
35+
* We forgot to close the file descriptor reading from "gpg" output,
36+
killing "git log --show-signature" on a long history.
37+
2538
* "git rebase --preserve-merges" lost empty merges in recent versions
2639
of Git.
2740

41+
* Rebasing the history of superproject with change in the submodule
42+
has been broken since v1.7.12.
43+
44+
* A failure to push due to non-ff while on an unborn branch
45+
dereferenced a NULL pointer when showing an error message.
46+
2847
Also contains various documentation fixes.

Documentation/git.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,11 @@ 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.1.1/git.html[documentation for release 1.8.1.1]
46+
* link:v1.8.1.3/git.html[documentation for release 1.8.1.3]
4747

4848
* release notes for
49+
link:RelNotes/1.8.1.3.txt[1.8.1.3],
50+
link:RelNotes/1.8.1.2.txt[1.8.1.2],
4951
link:RelNotes/1.8.1.1.txt[1.8.1.1],
5052
link:RelNotes/1.8.1.txt[1.8.1].
5153

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.8.1.2
4+
DEF_VER=v1.8.1.3
55

66
LF='
77
'

0 commit comments

Comments
 (0)