Skip to content

Commit f09bd21

Browse files
committed
Git 2.4.4
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 37d6f93 commit f09bd21

File tree

4 files changed

+39
-3
lines changed

4 files changed

+39
-3
lines changed

Documentation/RelNotes/2.4.4.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Git v2.4.4 Release Notes
2+
========================
3+
4+
Fixes since v2.4.3
5+
------------------
6+
7+
* l10n updates for German.
8+
9+
* An earlier leakfix to bitmap testing code was incomplete.
10+
11+
* "git clean pathspec..." tried to lstat(2) and complain even for
12+
paths outside the given pathspec.
13+
14+
* Communication between the HTTP server and http_backend process can
15+
lead to a dead-lock when relaying a large ref negotiation request.
16+
Diagnose the situation better, and mitigate it by reading such a
17+
request first into core (to a reasonable limit).
18+
19+
* The clean/smudge interface did not work well when filtering an
20+
empty contents (failed and then passed the empty input through).
21+
It can be argued that a filter that produces anything but empty for
22+
an empty input is nonsense, but if the user wants to do strange
23+
things, then why not?
24+
25+
* Make "git stash something --help" error out, so that users can
26+
safely say "git stash drop --help".
27+
28+
* Clarify that "log --raw" and "log --format=raw" are unrelated
29+
concepts.
30+
31+
* Catch a programmer mistake to feed a pointer not an array to
32+
ARRAY_SIZE() macro, by using a couple of GCC extensions.
33+
34+
Also contains typofixes, documentation updates and trivial code
35+
clean-ups.

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 the 'master'
4343
branch of the `git.git` repository.
4444
Documentation for older releases are available here:
4545

46-
* link:v2.4.3/git.html[documentation for release 2.4.3]
46+
* link:v2.4.4/git.html[documentation for release 2.4.4]
4747

4848
* release notes for
49+
link:RelNotes/2.4.4.txt[2.4.4],
4950
link:RelNotes/2.4.3.txt[2.4.3],
5051
link:RelNotes/2.4.2.txt[2.4.2],
5152
link:RelNotes/2.4.1.txt[2.4.1],

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=v2.4.3
4+
DEF_VER=v2.4.4
55

66
LF='
77
'

RelNotes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Documentation/RelNotes/2.4.3.txt
1+
Documentation/RelNotes/2.4.4.txt

0 commit comments

Comments
 (0)