Git 2.13-rc1

Signed-off-by: Junio C Hamano <gitster@pobox.com>

Junio C Hamano committed Apr 26, 2017 at 15:44 UTC 027a3b943b444a3e3a76f9a89803fc10245b858f
2 files changed +40 -1
Documentation/RelNotes/2.13.0.txt
+39
@@ -186,6 +186,15 @@ UI, Workflows & Features
186 size that can be expressed in size_t, which can be larger than
187 ulong on some platforms.
188
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 +
198
199 Performance, Internal Implementation, Development Support etc.
200
@@ -302,6 +311,20 @@ Performance, Internal Implementation, Development Support etc.
311 file is used. Omit the validation during normal use, and instead
312 verify only in "git fsck".
313
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 +
328 Also contains various documentation updates and code clean-ups.
329
330
@@ -535,6 +558,19 @@ notes for details).
558 using garbage past the end of the buffer.
559 (merge 5781a9a270 dt/xgethostname-nul-termination later to maint).
560
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 +
574 * Other minor doc, test and build updates and code cleanups.
575 (merge df2a6e38b7 jk/pager-in-use later to maint).
576 (merge 75ec4a6cb0 ab/branch-list-doc later to maint).
@@ -557,3 +593,6 @@ notes for details).
593 (merge d8f4481c4f jk/quarantine-received-objects later to maint).
594 (merge 7ba1ceef95 xy/format-patch-base later to maint).
595 (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
+1 -1
@@ -1,7 +1,7 @@
1 #!/bin/sh
2
3 GVF=GIT-VERSION-FILE
4 -DEF_VER=v2.13.0-rc0
4 +DEF_VER=v2.13.0-rc1
5
6 LF='
7 '