Skip to content

Commit f900c83

Browse files
committed
Git 2.7-rc1
Signed-off-by: Junio C Hamano <[email protected]>
1 parent bdb32a8 commit f900c83

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

Documentation/RelNotes/2.7.0.txt

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ Performance, Internal Implementation, Development Support etc.
100100

101101
* The debugging infrastructure for pkt-line based communication has
102102
been improved to mark the side-band communication specifically.
103-
(merge fd89433 jk/async-pkt-line later to maint).
104103

105104
* Update "git branch" that list existing branches, using the
106105
ref-filter API that is shared with "git tag" and "git
@@ -356,12 +355,19 @@ notes for details).
356355
* A build without NO_IPv6 used to use gethostbyname() when guessing
357356
user's hostname, instead of getaddrinfo() that is used in other
358357
codepaths in such a build.
359-
(merge 00bce77 ep/ident-with-getaddrinfo later to maint).
360358

361-
* The exit code of git-fsck didnot reflect some types of errors found
362-
in packed objects, which has been corrected.
363-
(merge 8c24d83 dt/fsck-verify-pack-error later to maint).
359+
* The exit code of git-fsck did not reflect some types of errors
360+
found in packed objects, which has been corrected.
361+
362+
* The helper used to iterate over loose object directories to prune
363+
stale objects did not closedir() immediately when it is done with a
364+
directory--a callback such as the one used for "git prune" may want
365+
to do rmdir(), but it would fail on open directory on platforms
366+
such as WinXP.
367+
368+
* "git p4" used to import Perforce CLs that touch only paths outside
369+
the client spec as empty commits. It has been corrected to ignore
370+
them instead, with a new configuration git-p4.keepEmptyCommits as a
371+
backward compatibility knob.
364372

365373
* Code clean-up, minor fixes etc.
366-
(merge 15ed07d jc/rerere later to maint).
367-
(merge 147875f sb/submodule-config-parse later to maint).

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.7.0-rc0
4+
DEF_VER=v2.7.0-rc1
55

66
LF='
77
'

0 commit comments

Comments
 (0)