Skip to content

Commit f3da2b7

Browse files
committed
Git 2.14-rc0
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 757e987 commit f3da2b7

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

Documentation/RelNotes/2.14.0.txt

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ UI, Workflows & Features
108108
* An old message shown in the commit log template was removed, as it
109109
has outlived its usefulness.
110110

111+
* "git pull --rebase --recurse-submodules" learns to rebase the
112+
branch in the submodules to an updated base.
113+
111114

112115
Performance, Internal Implementation, Development Support etc.
113116

@@ -217,6 +220,10 @@ Performance, Internal Implementation, Development Support etc.
217220
object database?" query that is used to derive the length of prefix
218221
an object name is uniquely abbreviated to.
219222

223+
* The hashmap API has been updated so that data to customize the
224+
behaviour of the comparison function can be specified at the time a
225+
hashmap is initialized.
226+
220227

221228
Also contains various documentation updates and code clean-ups.
222229

@@ -432,7 +439,7 @@ notes for details).
432439
* Update the sha1dc again to fix portability glitches.
433440

434441
* Code clean-up to fix possible buffer over-reading.
435-
(merge 8bc172e5f2 rs/apply-avoid-over-reading later to maint).
442+
(merge 2d105451c0 rs/apply-avoid-over-reading later to maint).
436443

437444
* A few tests that tried to verify the contents of push certificates
438445
did not use 'git rev-parse' to formulate the line to look for in
@@ -445,16 +452,17 @@ notes for details).
445452
code to walk the reflog of HEAD via "log -g" and friends
446453
incorrectly stopped at the reflog entry that records the renaming
447454
of the branch.
448-
(merge e30d463d45 jk/reflog-walk-maint later to maint).
449455

450456
* The rewrite of "git branch --list" using for-each-ref's internals
451457
that happened in v2.13 regressed its handling of color.branch.local;
452458
this has been fixed.
453-
(merge 5b5c9c3e19 kn/ref-filter-branch-list later to maint).
459+
460+
* The build procedure has been improved to allow building and testing
461+
Git with address sanitizer more easily.
462+
(merge 566cf0b3bd jk/build-with-asan later to maint).
454463

455464
* Other minor doc, test and build updates and code cleanups.
456465
(merge 3f9c637ec7 pw/unquote-path-in-git-pm later to maint).
457-
(merge 669638fe7a ks/typofix-commit-c-comment later to maint).
458466
(merge 5053313562 rs/urlmatch-cleanup later to maint).
459467
(merge 42c78a216e rs/use-div-round-up later to maint).
460468
(merge 5e8d2729ae rs/wt-status-cleanup 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.13.GIT
4+
DEF_VER=v2.14.0-rc0
55

66
LF='
77
'

0 commit comments

Comments
 (0)