diff options
-rw-r--r-- | Documentation/RelNotes/1.8.0.1.txt | 12 | ||||
-rw-r--r-- | Documentation/git.txt | 5 | ||||
-rwxr-xr-x | GIT-VERSION-GEN | 2 | ||||
-rw-r--r-- | contrib/completion/git-completion.bash | 2 |
4 files changed, 17 insertions, 4 deletions
diff --git a/Documentation/RelNotes/1.8.0.1.txt b/Documentation/RelNotes/1.8.0.1.txt index cda8b3e7a0..1f372fa0b5 100644 --- a/Documentation/RelNotes/1.8.0.1.txt +++ b/Documentation/RelNotes/1.8.0.1.txt @@ -49,4 +49,16 @@ Fixes since v1.8.0 * "git diff -G<pattern>" did not honor textconv filter when looking for changes. + * Bash completion script (in contrib/) did not correctly complete a + lazy "git checkout $name_of_remote_tracking_branch_that_is_unique" + command line. + + * RSS feed from "gitweb" had a xss hole in its title output. + + * "git config --path $key" segfaulted on "[section] key" (a boolean + "true" spelled without "=", not "[section] key = true"). + + * "git checkout -b foo" while on an unborn branch did not say + "Switched to a new branch 'foo'" like other cases. + Also contains other minor fixes and documentation updates. diff --git a/Documentation/git.txt b/Documentation/git.txt index 4a89a12513..cbe0883534 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -43,10 +43,11 @@ unreleased) version of git, that is available from 'master' branch of the `git.git` repository. Documentation for older releases are available here: -* link:v1.8.0/git.html[documentation for release 1.8.0] +* link:v1.8.0.1/git.html[documentation for release 1.8.0.1] * release notes for - link:RelNotes/1.8.0.txt[1.8.0], + link:RelNotes/1.8.0.1.txt[1.8.0.1], + link:RelNotes/1.8.0.txt[1.8.0]. * link:v1.7.12.4/git.html[documentation for release 1.7.12.4] diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index b09d264a86..d66e54f12d 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v1.8.0 +DEF_VER=v1.8.0.1 LF=' ' diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index bc0657a224..85ae4191e5 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -321,7 +321,7 @@ __git_refs () if [[ "$ref" == "$cur"* ]]; then echo "$ref" fi - done | uniq -u + done | sort | uniq -u fi return fi |