Skip to content

Commit 027a3b9

Browse files
committed
Git 2.13-rc1
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 77b34ea commit 027a3b9

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

Documentation/RelNotes/2.13.0.txt

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,15 @@ UI, Workflows & Features
186186
size that can be expressed in size_t, which can be larger than
187187
ulong on some platforms.
188188

189+
* "git rebase" learns "--signoff" option.
190+
191+
* The completion script (in contrib/) learned to complete "git push
192+
--delete b<TAB>" to complete branch name to be deleted.
193+
194+
* "git worktree add --lock" allows to lock a worktree immediately
195+
after it's created. This helps prevent a race between "git worktree
196+
add; git worktree lock" and "git worktree prune".
197+
189198

190199
Performance, Internal Implementation, Development Support etc.
191200

@@ -302,6 +311,20 @@ Performance, Internal Implementation, Development Support etc.
302311
file is used. Omit the validation during normal use, and instead
303312
verify only in "git fsck".
304313

314+
* Having a git command on the upstream side of a pipe in a test
315+
script will hide the exit status from the command, which may cause
316+
us to fail to notice a breakage; rewrite tests in a script to avoid
317+
this issue.
318+
319+
* Travis CI learns to run coccicheck.
320+
321+
* "git checkout" that handles a lot of paths has been optimized by
322+
reducing the number of unnecessary checks of paths in the
323+
has_dir_name() function.
324+
325+
* The internals of the refs API around the cached refs has been
326+
streamlined.
327+
305328
Also contains various documentation updates and code clean-ups.
306329

307330

@@ -535,6 +558,19 @@ notes for details).
535558
using garbage past the end of the buffer.
536559
(merge 5781a9a270 dt/xgethostname-nul-termination later to maint).
537560

561+
* A recent update broke "git add -p ../foo" from a subdirectory.
562+
563+
* While handy, "git_path()" is a dangerous function to use as a
564+
callsite that uses it safely one day can be broken by changes
565+
to other code that calls it. Reduction of its use continues.
566+
(merge 16d2676c9e jk/war-on-git-path later to maint).
567+
568+
* The split-index code configuration code used an unsafe git_path()
569+
function without copying its result out.
570+
571+
* Many stale HTTP(s) links have been updated in our documentation.
572+
(merge 613416f0be jk/update-links-in-docs later to maint).
573+
538574
* Other minor doc, test and build updates and code cleanups.
539575
(merge df2a6e38b7 jk/pager-in-use later to maint).
540576
(merge 75ec4a6cb0 ab/branch-list-doc later to maint).
@@ -557,3 +593,6 @@ notes for details).
557593
(merge d8f4481c4f jk/quarantine-received-objects later to maint).
558594
(merge 7ba1ceef95 xy/format-patch-base later to maint).
559595
(merge fa1912c89a rs/misc-cppcheck-fixes later to maint).
596+
(merge f17d642d3b ab/push-cas-doc-n-test later to maint).
597+
(merge 61e282425a ss/gitmodules-ignore-doc later to maint).
598+
(merge 8d3047cd5b ss/submodule-shallow-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.13.0-rc0
4+
DEF_VER=v2.13.0-rc1
55

66
LF='
77
'

0 commit comments

Comments
 (0)