1
1
Git v1.8.0 Release Notes
2
2
========================
3
3
4
+ Backward compatibility notes
5
+ ----------------------------
6
+
7
+ In the next major release, we will change the behaviour of the "git
8
+ push" command. When "git push [$there]" does not say what to push, we
9
+ have used the traditional "matching" semantics (all your branches were
10
+ sent to the remote as long as there already are branches of the same
11
+ name over there). We will use the "simple" semantics, that pushes the
12
+ current branch to the branch with the same name only when the current
13
+ branch is set to integrate with that remote branch. There is a user
14
+ preference configuration variable "push.default" to change this, and
15
+ "git push" will warn about the upcoming change until you set this
16
+ variable.
17
+
18
+
4
19
Updates since v1.7.12
5
20
---------------------
6
21
7
22
UI, Workflows & Features
8
23
24
+ * "git difftool --dir-diff" learned to use symbolic links to prepare
25
+ temporary copy of the working tree when available.
26
+
27
+ * "git grep" learned to use a non-standard pattern type by default if
28
+ a configuration variable tells it to.
9
29
10
30
Foreign Interface
11
31
@@ -17,6 +37,9 @@ Performance, Internal Implementation, etc. (please report possible regressions)
17
37
* The "check-docs" build target has been updated and greatly
18
38
simplified.
19
39
40
+ * The documentation in the TeXinfo format was using indented output
41
+ for materials meant to be examples that are better typeset in
42
+ monospace.
20
43
21
44
Also contains minor documentation updates and code clean-ups.
22
45
@@ -28,6 +51,20 @@ Unless otherwise noted, all the fixes since v1.7.12 in the
28
51
maintenance track are contained in this release (see release notes
29
52
to them for details).
30
53
54
+
55
+ * When "git push" triggered the automatic gc on the receiving end, a
56
+ message from "git prune" that said it was removing cruft leaked to
57
+ the standard output, breaking the communication protocol.
58
+ (merge 4b7f2fa bc/receive-pack-stdout-protection later to maint).
59
+
60
+ * "git diff" had a confusion between taking data from a path in the
61
+ working tree and taking data from an object that happens to have
62
+ name 0{40} recorded in a tree.
63
+ (merge c479d14 jk/maint-null-in-trees later to maint).
64
+
65
+ * The output from "git diff -B" for a file that ends with an
66
+ incomplete line did not put "\ No newline..." on a line of its own.
67
+
31
68
* "git send-email" did not unquote encoded words that appear on the
32
69
header correctly, and lost "_" from strings.
33
70
(merge b622d4d tr/maint-send-email-2047 later to maint).
0 commit comments