This repository was archived by the owner on Nov 9, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,26 @@ Git v1.9.2 Release Notes
4
4
Fixes since v1.9.1
5
5
------------------
6
6
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
+
7
27
* When it is not necessary to edit a commit log message (e.g. "git
8
28
commit -m" is given a message without specifying "-e"), we used to
9
29
disable the spawning of the editor by overriding GIT_EDITOR, but
Original file line number Diff line number Diff line change @@ -43,9 +43,10 @@ unreleased) version of Git, that is available from 'master'
43
43
branch of the `git.git` repository.
44
44
Documentation for older releases are available here:
45
45
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 ]
47
47
48
48
* release notes for
49
+ link:RelNotes/1.9.2.txt[1.9.2],
49
50
link:RelNotes/1.9.1.txt[1.9.1],
50
51
link:RelNotes/1.9.0.txt[1.9.0].
51
52
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
3
GVF=GIT-VERSION-FILE
4
- DEF_VER=v1.9.1
4
+ DEF_VER=v1.9.2
5
5
6
6
LF='
7
7
'
You can’t perform that action at this time.
0 commit comments