@@ -22,6 +22,15 @@ Updates since v1.7.6
22
22
* "git archive" can be told to pass the output to gzip compression and
23
23
produce "archive.tar.gz".
24
24
25
+ * "git bisect" can be used in a bare repository (provided if the test
26
+ you perform per each iteration does not need a working tree, of
27
+ course).
28
+
29
+ * "git check-attr" can take relative paths from the command line.
30
+
31
+ * "git check-attr" learned "--all" option to list the attributes for a
32
+ given path.
33
+
25
34
* "git checkout" (both the code to update the files upon checking out a
26
35
different branch, the code to checkout specific set of files) learned
27
36
to stream the data from object store when possible, without having to
@@ -38,6 +47,10 @@ Updates since v1.7.6
38
47
* "git diff --stat" learned --stat-count option to limit the output of
39
48
diffstat report.
40
49
50
+ * "git diff" learned "--histogram" option, to use a different diff
51
+ generation machinery stolen from jgit, which might give better
52
+ performance.
53
+
41
54
* "git fetch", "git push" and friends no longer show connection
42
55
errors for addresses that couldn't be connected when at least one
43
56
address succeeds (this is arguably a regression but a deliberate
@@ -58,6 +71,11 @@ Updates since v1.7.6
58
71
submodule; it now goes on to update other submodules that can be
59
72
updated, and reports the ones with errors at the end.
60
73
74
+ * "git upload-pack" and "git receive-pack" learned to pretend only a
75
+ subset of the refs exist in a repository. This may help a site to
76
+ put many tiny repositories into one repository (this would not be
77
+ useful for larger repositories as repacking would be problematic).
78
+
61
79
* "git verify-pack" has been rewritten to use the "index-pack" machinery
62
80
that is more efficient in reading objects in packfiles.
63
81
@@ -74,10 +92,25 @@ Fixes since v1.7.6
74
92
Unless otherwise noted, all the fixes in 1.7.6.X maintenance track are
75
93
included in this release.
76
94
95
+ * Error exits from $PAGER were silently ignored.
96
+ (merge fc1b56f cb/maint-exec-error-report later).
97
+
98
+ * "git diff -c/--cc" mishandled a deletion that resolves a conflict, and
99
+ looked in the working tree instead.
100
+ (merge 9969454 jc/maint-combined-diff-work-tree later).
101
+
102
+ * "git fetch" over smart-http transport used to abort when the
103
+ repository was updated between the initial connection and the
104
+ subsequent object transfer.
105
+ (merge 051e400 jc/maint-smart-http-race-upload-pack later).
106
+
107
+ * "git push --quiet" was not really quiet.
108
+ (merge 0d086b8 cb/maint-quiet-push later).
109
+
77
110
--
78
111
exec >/var/tmp/1
79
112
echo O=$(git describe master)
80
- O=v1.7.6-471-g50b68ae
113
+ O=v1.7.6-548-g324b6b1
81
114
git log --first-parent --oneline $O..master
82
115
echo
83
116
git shortlog --no-merges ^maint ^$O master
0 commit comments