Skip to content

Commit 1eaabe3

Browse files
committed
Git 2.16-rc0
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 556de1a commit 1eaabe3

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

Documentation/RelNotes/2.16.0.txt

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,24 @@ UI, Workflows & Features
127127
* "git worktree add" learned to run the post-checkout hook, just like
128128
"git checkout" does, after the initial checkout.
129129

130+
* "git svn" has been updated to strip CRs in the commit messages, as
131+
recent versions of Subversion rejects them.
132+
133+
* "git imap-send" did not correctly quote the folder name when
134+
making a request to the server, which has been corrected.
135+
136+
* Error messages from "git rebase" have been somewhat cleaned up.
137+
138+
* Git has been taught to support an https:// URL used for http.proxy
139+
when using recent versions of libcurl.
140+
141+
* "git merge" learned to pay attention to merge.verifySignatures
142+
configuration variable and pretend as if '--verify-signatures'
143+
option was given from the command line.
144+
145+
* "git describe" was taught to dig trees deeper to find a
146+
<commit-ish>:<path> that refers to a given blob object.
147+
130148

131149
Performance, Internal Implementation, Development Support etc.
132150

@@ -201,6 +219,12 @@ Performance, Internal Implementation, Development Support etc.
201219
* Assorted updates for TravisCI integration.
202220
(merge 4f26366679 sg/travis-fixes later to maint).
203221

222+
* Introduce a helper to simplify code to parse a common pattern that
223+
expects either "--key" or "--key=<something>".
224+
225+
* "git version --build-options" learned to report the host CPU and
226+
the exact commit object name the binary was built from.
227+
204228
Also contains various documentation updates and code clean-ups.
205229

206230

@@ -405,6 +429,10 @@ Fixes since v2.15
405429
documents to install.
406430
(merge 65289e9dcd rb/quick-install-doc later to maint).
407431

432+
* Update the shell prompt script (in contrib/) to strip trailing CR
433+
from strings read from various "state" files.
434+
(merge 041fe8fc83 ra/prompt-eread-fix later to maint).
435+
408436
* Other minor doc, test and build updates and code cleanups.
409437
(merge 1a1fc2d5b5 rd/man-prune-progress later to maint).
410438
(merge 0ba014035a rd/man-reflog-add-n later to maint).
@@ -425,3 +453,6 @@ Fixes since v2.15
425453
(merge d0e6326026 ot/pretty later to maint).
426454
(merge 44103f4197 sb/test-helper-excludes later to maint).
427455
(merge 170078693f jt/transport-no-more-rsync later to maint).
456+
(merge c07b3adff1 bw/path-doc later to maint).
457+
(merge bf9d7df950 tz/lib-git-svn-svnserve-tests later to maint).
458+
(merge dec366c9a8 sr/http-sslverify-config-doc 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.15.GIT
4+
DEF_VER=v2.16.0-rc0
55

66
LF='
77
'

0 commit comments

Comments
 (0)