Skip to content

Commit 64948ad

Browse files
committed
Git 1.8.4-rc2
This is with mostly minor documentation and test updates, nothing spectacular except for removal of funky lstat(2) emulation on Cygwin. Signed-off-by: Junio C Hamano <[email protected]>
1 parent fb56570 commit 64948ad

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Documentation/RelNotes/1.8.4.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,13 @@ UI, Workflows & Features
242242

243243
Performance, Internal Implementation, etc.
244244

245+
* On Cygwin, we used to use our own lstat(2) emulation that is
246+
allegedly faster than the platform one in codepaths where some of
247+
the information it returns did not matter, but it started to bite
248+
us in a few codepaths where the trick it uses to cheat does show
249+
breakages. This emulation has been removed and we use the native
250+
lstat(2) emulation supplied by Cygwin now.
251+
245252
* The function attributes extensions are used to catch mistakes in
246253
use of our own variadic functions that use NULL sentinel at the end
247254
(i.e. like execl(3)) and format strings (i.e. like printf(3)).

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.4-rc1
4+
DEF_VER=v1.8.4-rc2
55

66
LF='
77
'

0 commit comments

Comments
 (0)