]> granicus.if.org Git - git/commitdiff
Git 1.9.2 v1.9.2
authorJunio C Hamano <gitster@pobox.com>
Wed, 9 Apr 2014 19:04:34 +0000 (12:04 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 9 Apr 2014 19:04:34 +0000 (12:04 -0700)
The second maintenance release for Git 1.9; contains all the fixes
that are scheduled to appear in Git 2.0.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/RelNotes/1.9.2.txt
Documentation/git.txt
GIT-VERSION-GEN

index 35904d0458e97d3c86761849de0e3999094f63cf..47a34ca964da5faa85e96ac0c72668f1c2a7b500 100644 (file)
@@ -4,6 +4,26 @@ Git v1.9.2 Release Notes
 Fixes since v1.9.1
 ------------------
 
+ * Documentation and in-code comments had many instances of mistaken
+   use of "nor", which have been corrected.
+
+ * "git fetch --prune", when the right-hand-side of multiple fetch
+   refspecs overlap (e.g. storing "refs/heads/*" to
+   "refs/remotes/origin/*", while storing "refs/frotz/*" to
+   "refs/remotes/origin/fr/*"), aggressively thought that lack of
+   "refs/heads/fr/otz" on the origin site meant we should remove
+   "refs/remotes/origin/fr/otz" from us, without checking their
+   "refs/frotz/otz" first.
+
+   Note that such a configuration is inherently unsafe (think what
+   should happen when "refs/heads/fr/otz" does appear on the origin
+   site), but that is not a reason not to be extra careful.
+
+ * "git update-ref --stdin" did not fail a request to create a ref
+   when the ref already existed.
+
+ * "git diff --no-index -Mq a b" fell into an infinite loop.
+
  * When it is not necessary to edit a commit log message (e.g. "git
    commit -m" is given a message without specifying "-e"), we used to
    disable the spawning of the editor by overriding GIT_EDITOR, but
index c7b135dbe51a1e7dbcabdf81606a6b8c401d59b7..f5b511ddbb2478d3a479d12c3a2f6cb21e5e83f7 100644 (file)
@@ -43,9 +43,10 @@ unreleased) version of Git, that is available from 'master'
 branch of the `git.git` repository.
 Documentation for older releases are available here:
 
-* link:v1.9.1/git.html[documentation for release 1.9.1]
+* link:v1.9.2/git.html[documentation for release 1.9.2]
 
 * release notes for
+  link:RelNotes/1.9.2.txt[1.9.2],
   link:RelNotes/1.9.1.txt[1.9.1],
   link:RelNotes/1.9.0.txt[1.9.0].
 
index 220afbd97144334767b3f431d008b0199efedd14..5d2bf82085bdc77a300ac75b0953bb0202f3060e 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v1.9.1
+DEF_VER=v1.9.2
 
 LF='
 '