Skip to content

Commit 44bc573

Browse files
committed
Merge branch 'maint'
* maint: Start preparing for 1.7.4.4 pull: do not clobber untracked files on initial pull compat: add missing #include <sys/resource.h> Conflicts: RelNotes
2 parents 485cdb9 + 8e84886 commit 44bc573

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

Documentation/RelNotes/1.7.4.4.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
Git v1.7.4.4 Release Notes
2+
==========================
3+
4+
Fixes since v1.7.4.3
5+
--------------------
6+
7+
* Compilation of sha1_file.c on BSD platforms were broken due to our
8+
recent use of getrlimit() without including <sys/resource.h>.
9+
10+
* "git config" did not diagnose incorrect configuration variable names.
11+
12+
* "git format-patch" did not wrap a long subject line that resulted from
13+
rfc2047 encoding.
14+
15+
* "git instaweb" should work better again with plackup.
16+
17+
* "git log --max-count=4 -Sfoobar" now shows 4 commits that changes the
18+
number of occurrences of string "foobar"; it used to scan only for 4
19+
commits and then emitted only matching ones.
20+
21+
* "git log --first-parent --boundary $c^..$c" segfaulted on a merge.
22+
23+
* "git pull" into an empty branch should have behaved as if
24+
fast-forwarding from emptiness to the version being pulled, with
25+
the usual protection against overwriting untracked files.
26+
27+
* "git status" spent all the effort to notice racily-clean index entries
28+
but didn't update the index file to help later operations go faster in
29+
some cases.
30+
31+
And other minor fixes and documentation updates.
32+
33+
---
34+
exec >/var/tmp/1
35+
O=v1.7.4.3-22-g8c8674f
36+
echo O=$(git describe maint)
37+
git shortlog --no-merges $O..maint

git-compat-util.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@
118118
#endif
119119
#ifndef __MINGW32__
120120
#include <sys/wait.h>
121+
#include <sys/resource.h>
121122
#include <sys/socket.h>
122123
#include <sys/ioctl.h>
123124
#include <termios.h>

0 commit comments

Comments
 (0)