@@ -26,12 +26,19 @@ Updates since v1.7.6
26
26
* "git diff --stat" learned --stat-count option to limit the output of
27
27
diffstat report.
28
28
29
+ * "git fetch", "git push" and friends no longer show connection
30
+ errors for addresses that couldn't be connected when at least one
31
+ address succeeds (this is arguably a regression but a deliberate
32
+ one).
33
+
29
34
* "git grep" learned --break and --heading options, to let users mimic
30
35
output format of "ack".
31
36
32
37
* "git rebase master topci" no longer spews usage hints after giving
33
38
"fatal: no such branch: topci" error message.
34
39
40
+ * "git stash" learned --include-untracked option.
41
+
35
42
* "git submodule update" used to stop at the first error updating a
36
43
submodule; it now goes on to update other submodules that can be
37
44
updated, and reports the ones with errors at the end.
@@ -52,6 +59,10 @@ Fixes since v1.7.6
52
59
Unless otherwise noted, all the fixes in 1.7.6.X maintenance track are
53
60
included in this release.
54
61
62
+ * "git checkout -b <branch>" sometimes wrote a bogus reflog entry,
63
+ causing later "git checkout -" fail.
64
+ (merge 71ee7fd jc/checkout-reflog-fix~1 later).
65
+
55
66
* "git diff --cc" learned to correctly ignore binary files.
56
67
(merge 0508fe5 jk/combine-diff-binary-etc later)
57
68
@@ -61,6 +72,10 @@ included in this release.
61
72
* "git rebase -i -p" incorrectly dropped commits from side branches.
62
73
(merge 12bf828 aw/rebase-i-p later)
63
74
75
+ * "git submodule add" did not allow a relative repository path when
76
+ the superproject did not have any default remote url.
77
+ (merge f22a17e8 jl/submodule-add-relurl-wo-upstream later)
78
+
64
79
* "git submodule foreach" failed to correctly give the standard input to
65
80
the user-supplied command it invoked.
66
81
(merge 4dca1aa bc/submodule-foreach-stdin-fix-1.7.4 later)
@@ -77,7 +92,7 @@ included in this release.
77
92
--
78
93
exec >/var/tmp/1
79
94
echo O=$(git describe master)
80
- O=v1.7.6-232-gd907bf8
95
+ O=v1.7.6-344-g22f4128
81
96
git log --first-parent --oneline $O..master
82
97
echo
83
98
git shortlog --no-merges ^maint ^$O master
0 commit comments