@@ -52,6 +52,9 @@ UI, Workflows & Features
52
52
53
53
* "git push" learned the "--prune" option, similar to "git fetch".
54
54
55
+ * "git symbolic-ref" learned the "--short" option to abbreviate the
56
+ refname it shows unambiguously.
57
+
55
58
* "git tag --list" can be given "--points-at <object>" to limit its
56
59
output to those that point at the given object.
57
60
@@ -64,6 +67,9 @@ UI, Workflows & Features
64
67
needed (including the ones that are not necessary for a specific
65
68
task).
66
69
70
+ * Project search in "gitweb" shows the substring that matched in the
71
+ project name and description highlighted.
72
+
67
73
Foreign Interface
68
74
69
75
* Improved handling of views, labels and branches in git-p4 (in contrib).
@@ -112,47 +118,18 @@ Unless otherwise noted, all the fixes since v1.7.9 in the maintenance
112
118
releases are contained in this release (see release notes to them for
113
119
details).
114
120
115
- * "git branch --with $that" assumed incorrectly that the user will never
116
- ask the question with nonsense value in $that.
117
- (merge 6c41e97 cn/maint-branch-with-bad later to maint).
118
-
119
- * An invalid regular expression pattern given by an end user made
120
- "gitweb" to return garbled response.
121
- (merge 36612e4 jn/maint-gitweb-invalid-regexp later to maint).
122
-
123
- * "git rev-list --verify-objects -q" omitted the extra verification
124
- it needs to do over "git rev-list --objects -q" by mistake.
125
- (merge 9899372 nd/maint-verify-objects later to maint).
126
-
127
- * The bulk check-in codepath streamed contents that needs
128
- smudge/clean filters without running them, instead of punting and
129
- delegating to the codepath to run filters after slurping everything
130
- to core.
131
- (merge 4f22b10 jk/maint-avoid-streaming-filtered-contents later to maint).
132
-
133
- * When the filter driver exits before reading the content before the
134
- main git process writes the contents to be filtered to the pipe to
135
- it, the latter could be killed with SIGPIPE instead of ignoring
136
- such an event as an error.
137
- (merge 6424c2a jb/filter-ignore-sigpipe later to maint).
138
-
139
- * When a remote helper exits before reading the blank line from the
140
- main git process to signal the end of commands, the latter could be
141
- killed with SIGPIPE. Instead we should ignore such event as a
142
- non-error.
143
- (merge c34fe63 sp/smart-http-failure-to-push later to maint).
144
-
145
- * "git bundle create" produced a corrupt bundle file upon seeing
146
- commits with excessively long subject line.
147
- (merge 8a557bb tr/maint-bundle-long-subject later to maint).
121
+ * The code to synthesize the fake ancestor tree used by 3-way merge
122
+ fallback in "git am" was not prepared to read a patch created with
123
+ a non-standard -p<num> value.
124
+ (merge a61ba26 jc/am-3-nonstandard-popt later to maint).
148
125
149
126
* "gitweb" used to drop warnings in the log file when "heads" view is
150
127
accessed in a repository whose HEAD does not point at a valid
151
128
branch.
152
129
153
130
---
154
131
exec >/var/tmp/1
155
- O=v1.7.9.2-358-g64d1544
132
+ O=v1.7.9.2-383-gb8b5290
156
133
echo O=$(git describe)
157
134
git log --first-parent --oneline ^maint $O..
158
135
echo
0 commit comments