Skip to content

Commit 6a2c2f8

Browse files
committed
Git 2.13-rc0
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 8377f34 commit 6a2c2f8

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

Documentation/RelNotes/2.13.0.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,12 @@ UI, Workflows & Features
176176
* The default behaviour of "git log" in an interactive session has
177177
been changed to enable "--decorate".
178178

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+
179185

180186
Performance, Internal Implementation, Development Support etc.
181187

@@ -272,6 +278,13 @@ Performance, Internal Implementation, Development Support etc.
272278
* Define a new task in .travis.yml that triggers a test session on
273279
Windows run elsewhere.
274280

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+
275288
Also contains various documentation updates and code clean-ups.
276289

277290

@@ -461,6 +474,24 @@ notes for details).
461474
etc. result in recomputation of perl.mak file.
462475
(merge c59c4939c2 ab/regen-perl-mak-with-different-perl later to maint).
463476

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+
464495
* Other minor doc, test and build updates and code cleanups.
465496
(merge df2a6e38b7 jk/pager-in-use later to maint).
466497
(merge 75ec4a6cb0 ab/branch-list-doc later to maint).
@@ -474,3 +505,7 @@ notes for details).
474505
(merge fba275dc93 jc/bs-t-is-not-a-tab-for-sed later to maint).
475506
(merge be6ed145de mm/ls-files-s-doc later to maint).
476507
(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

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.12.GIT
4+
DEF_VER=v2.13.0-rc0
55

66
LF='
77
'

0 commit comments

Comments
 (0)