From ee26a6e2b87905ac605c27841f607cb3379ca678 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 3 Dec 2012 09:49:51 -0800 Subject: [PATCH] Git 1.8.1-rc0 Signed-off-by: Junio C Hamano --- Documentation/RelNotes/1.8.1.txt | 24 +++++++++++++----------- GIT-VERSION-GEN | 2 +- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/Documentation/RelNotes/1.8.1.txt b/Documentation/RelNotes/1.8.1.txt index 8f53af3403..c507b129bb 100644 --- a/Documentation/RelNotes/1.8.1.txt +++ b/Documentation/RelNotes/1.8.1.txt @@ -19,7 +19,7 @@ variable in this release. "git branch --set-upstream" is deprecated and may be removed in a relatively distant future. "git branch [-u|--set-upstream-to]" has -been introduced with a saner order of arguments. +been introduced with a saner order of arguments to replace it. Updates since v1.8.0 @@ -50,7 +50,8 @@ UI, Workflows & Features * When "git checkout" checks out a branch, it tells the user how far behind (or ahead) the new branch is relative to the remote tracking branch it builds upon. The message now also advises how to sync - them up by pushing or pulling. + them up by pushing or pulling. This can be disabled with the + advice.statusHints configuration variable. * "git config --get" used to diagnose presence of multiple definitions of the same variable in the same configuration file as @@ -69,17 +70,18 @@ UI, Workflows & Features * "git log --grep=" learned to honor the "grep.patterntype" configuration set to "perl". - * "git replace -d " now interprets , instead of only - accepting full hex object name. + * "git replace -d " now interprets as an extended + SHA-1 (e.g. HEAD~4 is allowed), instead of only accepting full hex + object name. * "git rm $submodule" used to punt on removing a submodule working tree to avoid losing the repository embedded in it. Because recent git uses a mechanism to separate the submodule repository from the submodule working tree, "git rm" learned to detect this - case and removes the submodule working tree when it is safe. + case and removes the submodule working tree when it is safe to do so. * "git send-email" used to prompt for the sender address, even when - the committer identify is well specified (e.g. via user.name and + the committer identity is well specified (e.g. via user.name and user.email configuration variables). The command no longer gives this prompt when not necessary. @@ -103,7 +105,7 @@ UI, Workflows & Features * "git symbolic-ref" learned the "-d $symref" option to delete the named symbolic ref, which is more intuitive way to spell it than - "update-ref -d --no-deref". + "update-ref -d --no-deref $symref". Foreign Interface @@ -119,10 +121,10 @@ Performance, Internal Implementation, etc. * Compilation on Cygwin with newer header files are supported now. - * The logic to generate the initial advertisement from - "upload-pack" (what is invoked by "git fetch" on the other side - of the connection) to list what refs are available in the - repository has been optimized. + * The logic to generate the initial advertisement from "upload-pack" + (i.e. what is invoked by "git fetch" on the other side of the + connection) to list what refs are available in the repository has + been optimized. * The logic to find set of attributes that match a given path has been optimized. diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index d66e54f12d..76ffd4d4d6 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v1.8.0.1 +DEF_VER=v1.8.1-rc0 LF=' ' -- 2.11.4.GIT