Git 2.13-rc0
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Junio C Hamano committed
Apr 19, 2017 at 21:42 UTC
6a2c2f8d34fa1e8f3bb85d159d354810ed63692e
2 files changed
+36
-1
Documentation/RelNotes/2.13.0.txt
+35
@@ -176,6 +176,12 @@ UI, Workflows & Features
176
* The default behaviour of "git log" in an interactive session has
177
been changed to enable "--decorate".
178
179
+ * The output from "git status --short" has been extended to show
180
+ various kinds of dirtyness in submodules differently; instead of to
181
+ "M" for modified, 'm' and '?' can be shown to signal changes only
182
+ to the working tree of the submodule but not the commit that is
183
+ checked out.
184
+
185
186
Performance, Internal Implementation, Development Support etc.
187
@@ -272,6 +278,13 @@ Performance, Internal Implementation, Development Support etc.
278
* Define a new task in .travis.yml that triggers a test session on
279
Windows run elsewhere.
280
281
+ * Conversion from unsigned char [40] to struct object_id continues.
282
+
283
+ * The "submodule" specific field in the ref_store structure is
284
+ replaced with a more generic "gitdir" that can later be used also
285
+ when dealing with ref_store that represents the set of refs visible
286
+ from the other worktrees.
287
+
288
Also contains various documentation updates and code clean-ups.
289
290
@@ -461,6 +474,24 @@ notes for details).
474
etc. result in recomputation of perl.mak file.
475
(merge c59c4939c2 ab/regen-perl-mak-with-different-perl later to maint).
476
477
+ * "git push --recurse-submodules --push-option=<string>" learned to
478
+ propagate the push option recursively down to pushes in submodules.
479
+
480
+ * If a patch e-mail had its first paragraph after an in-body header
481
+ indented (even after a blank line after the in-body header line),
482
+ the indented line was mistook as a continuation of the in-body
483
+ header. This has been fixed.
484
+ (merge fd1062e52e lt/mailinfo-in-body-header-continuation later to maint).
485
+
486
+ * Clean up fallouts from recent tightening of the set-up sequence,
487
+ where Git barfs when repository information is accessed without
488
+ first ensuring that it was started in a repository.
489
+ (merge bccb22cbb1 jk/no-looking-at-dotgit-outside-repo later to maint).
490
+
491
+ * "git p4" used "name-rev HEAD" when it wants to learn what branch is
492
+ checked out; it should use "symbolic-ref HEAD".
493
+ (merge eff451101d ld/p4-current-branch-fix later to maint).
494
+
495
* Other minor doc, test and build updates and code cleanups.
496
(merge df2a6e38b7 jk/pager-in-use later to maint).
497
(merge 75ec4a6cb0 ab/branch-list-doc later to maint).
@@ -474,3 +505,7 @@ notes for details).
505
(merge fba275dc93 jc/bs-t-is-not-a-tab-for-sed later to maint).
506
(merge be6ed145de mm/ls-files-s-doc later to maint).
507
(merge 60b091c679 qp/bisect-docfix later to maint).
508
+ (merge 47242cd103 ah/diff-files-ours-theirs-doc later to maint).
509
+ (merge 35ad44cbd8 sb/submodule-rm-absorb later to maint).
510
+ (merge 0301f1fd92 va/i18n-perl-scripts later to maint).
511
+ (merge 733e064d98 vn/revision-shorthand-for-side-branch-log 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.12.GIT
4
+DEF_VER=v2.13.0-rc0
5
6
LF='
7
'