diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-12-01 12:44:56 (GMT) |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-12-01 12:44:56 (GMT) |
commit | 8a0ba68f6dab2c8b1f297a0d46b710bb9af3237a (patch) | |
tree | 86afb8524a53bc19a781a51ea134fb7d7ffbdc8c | |
parent | 15cc2da0b5aaf5350f180951450e0a5318f7d34d (diff) | |
download | git-8a0ba68f6dab2c8b1f297a0d46b710bb9af3237a.zip git-8a0ba68f6dab2c8b1f297a0d46b710bb9af3237a.tar.gz git-8a0ba68f6dab2c8b1f297a0d46b710bb9af3237a.tar.bz2 |
Git 2.20-rc2v2.20.0-rc2
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/RelNotes/2.20.0.txt | 19 | ||||
-rwxr-xr-x | GIT-VERSION-GEN | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/Documentation/RelNotes/2.20.0.txt b/Documentation/RelNotes/2.20.0.txt index 8e26664..b1deaf3 100644 --- a/Documentation/RelNotes/2.20.0.txt +++ b/Documentation/RelNotes/2.20.0.txt @@ -639,6 +639,22 @@ Fixes since v2.19 adjusted for shared repository settings. This was made consistent. (merge c9d6c78870 cc/shared-index-permbits later to maint). + * "git rebase --stat" to transplant a piece of history onto a totally + unrelated history were not working before and silently showed wrong + result. With the recent reimplementation in C, it started to instead + die with an error message, as the original logic was not prepared + to cope with this case. This has now been fixed. + + * The advice message to tell the user to migrate an existing graft + file to the replace system when a graft file was read was shown + even when "git replace --convert-graft-file" command, which is the + way the message suggests to use, was running, which made little + sense. + (merge 8821e90a09 ab/replace-graft-with-replace-advice later to maint). + + * "git diff --raw" lost ellipses to adjust the output columns for + some time now, but the documentation still showed them. + * Code cleanup, docfix, build fix, etc. (merge 96a7501aad ts/doc-build-manpage-xsl-quietly later to maint). (merge b9b07efdb2 tg/conflict-marker-size later to maint). @@ -679,3 +695,6 @@ Fixes since v2.19 (merge 8c64bc9420 sg/test-rebase-editor-fix later to maint). (merge 71571cd7d6 ma/sequencer-do-reset-saner-loop-termination later to maint). (merge 9a4cb8781e cb/notes-freeing-always-null-fix later to maint). + (merge 3006f5ee16 ma/reset-doc-rendering-fix later to maint). + (merge 4c2eb06419 sg/daemon-test-signal-fix later to maint). + (merge d27525e519 ss/msvc-strcasecmp later to maint). diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index bc15874..e80102e 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v2.20.0-rc1 +DEF_VER=v2.20.0-rc2 LF=' ' |