Skip to content

Commit 0bc85ab

Browse files
committed
Git 1.9.2
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 <[email protected]>
1 parent 3c9e56b commit 0bc85ab

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

Documentation/RelNotes/1.9.2.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ Git v1.9.2 Release Notes
44
Fixes since v1.9.1
55
------------------
66

7+
* Documentation and in-code comments had many instances of mistaken
8+
use of "nor", which have been corrected.
9+
10+
* "git fetch --prune", when the right-hand-side of multiple fetch
11+
refspecs overlap (e.g. storing "refs/heads/*" to
12+
"refs/remotes/origin/*", while storing "refs/frotz/*" to
13+
"refs/remotes/origin/fr/*"), aggressively thought that lack of
14+
"refs/heads/fr/otz" on the origin site meant we should remove
15+
"refs/remotes/origin/fr/otz" from us, without checking their
16+
"refs/frotz/otz" first.
17+
18+
Note that such a configuration is inherently unsafe (think what
19+
should happen when "refs/heads/fr/otz" does appear on the origin
20+
site), but that is not a reason not to be extra careful.
21+
22+
* "git update-ref --stdin" did not fail a request to create a ref
23+
when the ref already existed.
24+
25+
* "git diff --no-index -Mq a b" fell into an infinite loop.
26+
727
* When it is not necessary to edit a commit log message (e.g. "git
828
commit -m" is given a message without specifying "-e"), we used to
929
disable the spawning of the editor by overriding GIT_EDITOR, but

Documentation/git.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@ unreleased) version of Git, that is available from 'master'
4343
branch of the `git.git` repository.
4444
Documentation for older releases are available here:
4545

46-
* link:v1.9.1/git.html[documentation for release 1.9.1]
46+
* link:v1.9.2/git.html[documentation for release 1.9.2]
4747

4848
* release notes for
49+
link:RelNotes/1.9.2.txt[1.9.2],
4950
link:RelNotes/1.9.1.txt[1.9.1],
5051
link:RelNotes/1.9.0.txt[1.9.0].
5152

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=v1.9.1
4+
DEF_VER=v1.9.2
55

66
LF='
77
'

0 commit comments

Comments
 (0)