What's cooking (2011/07 #04)
Junio C Hamano committed
Jul 27, 2011 at 17:05 UTC
fa8727c618eb17290ee325d258b58701296ff653
1 file changed
+217
-231
whats-cooking.txt
+217
-231
@@ -1,104 +1,198 @@
1
To: git@vger.kernel.org
2
-Subject: What's cooking in git.git (Jul 2011, #03; Wed, 20)
3
-X-master-at: d79bcd68056250d7c03bf9b12728ee2fd85a0ab3
4
-X-next-at: e1ef4147bce8b10d938f988e64e2adfef7cb94eb
2
+Subject: What's cooking in git.git (Jul 2011, #04; Wed, 27)
3
+X-master-at: 4db0d0d1ba94c08f9476c7adff61375a752b154d
4
+X-next-at: 013d7d08533ebc8b58e6e42cfdba28f2f4817be6
5
6
-What's cooking in git.git (Jul 2011, #03; Wed, 20)
6
+What's cooking in git.git (Jul 2011, #04; Wed, 27)
7
--------------------------------------------------
8
9
Here are the topics that have been cooking. Commits prefixed with '-' are
10
only in 'pu' while commits prefixed with '+' are in 'next'.
11
12
+--------------------------------------------------
13
+[New Topics]
14
+
15
+* jc/streaming-filter (2011-07-22) 1 commit
16
+ (merged to 'next' on 2011-07-22 at 2081cd7)
17
+ + streaming: free git_istream upon closing
18
+
19
+A large leak found and plugged.
20
+Will merge to "master".
21
+
22
+* jn/gitweb-system-config (2011-07-24) 1 commit
23
+ - gitweb: Introduce common system-wide settings for convenience
24
+
25
+* js/ls-tree-error (2011-07-25) 2 commits
26
+ - Ensure git ls-tree exits with a non-zero exit code if read_tree_recursive fails.
27
+ - Add a test to check that git ls-tree sets non-zero exit code on error.
28
+
29
+* jc/merge-reword (2011-05-25) 2 commits
30
+ - merge: mark the final "Merge made by..." message for l10n
31
+ - merge: reword the final message
32
+
33
+Probably the topmost commit should be dropped.
34
+
35
+* jk/reset-reflog-message-fix (2011-07-22) 1 commit
36
+ - reset: give better reflog messages
37
+
38
+Will merge to "next".
39
+
40
+* jk/add-i-hunk-filter (2011-07-27) 5 commits
41
+ - add--interactive: add option to autosplit hunks
42
+ - add--interactive: allow negatation of hunk filters
43
+ - add--interactive: allow hunk filtering on command line
44
+ - add--interactive: factor out regex error handling
45
+ - add--interactive: refactor patch mode argument processing
46
+
47
+* mh/check-attr-listing (2011-07-27) 19 commits
48
+ - Rename struct git_attr_check to git_attr_value
49
+ - git-check-attr: Fix command-line handling to match docs
50
+ - git-check-attr: Drive two tests using the same raw data
51
+ - git-check-attr: Add an --all option to show all attributes
52
+ - git-check-attr: Error out if no pathnames are specified
53
+ - git-check-attr: Process command-line args more systematically
54
+ - git-check-attr: Handle each error separately
55
+ - git-check-attr: Extract a function error_with_usage()
56
+ - git-check-attr: Introduce a new variable
57
+ - git-check-attr: Extract a function output_attr()
58
+ - Allow querying all attributes on a file
59
+ - git-check-attr: Use git_attr_name()
60
+ - Provide access to the name attribute of git_attr
61
+ - git-check-attr: Add tests of command-line parsing
62
+ - git-check-attr: Add missing "&&"
63
+ - Disallow the empty string as an attribute name
64
+ - Remove anachronism from comment
65
+ - doc: Correct git_attr() calls in example code
66
+ - doc: Add a link from gitattributes(5) to git-check-attr(1)
67
+
68
--------------------------------------------------
69
[Graduated to "master"]
70
15
-* ak/gcc46-profile-feedback (2011-06-20) 3 commits
16
- (merged to 'next' on 2011-07-01 at 81bc0a7)
17
- + Add explanation of the profile feedback build to the README
18
- + Add profile feedback build to git
19
- + Add option to disable NORETURN
20
-
21
-* jc/index-pack (2011-06-05) 9 commits
22
- (merged to 'next' on 2011-07-05 at 5062ba9)
23
- + verify-pack: use index-pack --verify
24
- + index-pack: show histogram when emulating "verify-pack -v"
25
- + index-pack: start learning to emulate "verify-pack -v"
26
- + index-pack: a miniscule refactor
27
- + index-pack --verify: read anomalous offsets from v2 idx file
28
- + write_idx_file: need_large_offset() helper function
29
- + index-pack: --verify
30
- + write_idx_file: introduce a struct to hold idx customization options
31
- + index-pack: group the delta-base array entries also by type
32
-
33
-* jc/submodule-sync-no-auto-vivify (2011-06-26) 2 commits
34
- (merged to 'next' on 2011-07-05 at b207ba3)
35
- + submodule add: always initialize .git/config entry
36
- + submodule sync: do not auto-vivify uninteresting submodule
37
-
38
-* jc/zlib-wrap (2011-06-10) 7 commits
39
- (merged to 'next' on 2011-07-05 at 77bcbdc)
40
- + zlib: allow feeding more than 4GB in one go
41
- + zlib: zlib can only process 4GB at a time
42
- + zlib: wrap deflateBound() too
43
- + zlib: wrap deflate side of the API
44
- + zlib: wrap inflateInit2 used to accept only for gzip format
45
- + zlib: wrap remaining calls to direct inflate/inflateEnd
46
- + zlib wrapper: refactor error message formatter
47
-
48
-We used to use zlib incorrectly and botched inflating/deflating data
49
-that is more than 4GB long on platforms with 64-bit ulong.
50
-
51
-* jk/archive-tar-filter (2011-06-22) 9 commits
52
- (merged to 'next' on 2011-07-05 at add3e7f)
53
- + upload-archive: allow user to turn off filters
54
- + archive: provide builtin .tar.gz filter
55
- + archive: implement configurable tar filters
56
- + archive: refactor file extension format-guessing
57
- + archive: move file extension format-guessing lower
58
- + archive: pass archiver struct to write_archive callback
59
- + archive: refactor list of archive formats
60
- + archive-tar: don't reload default config options
61
- + archive: reorder option parsing and config reading
62
-
63
-* jk/clone-cmdline-config (2011-06-22) 4 commits
64
- (merged to 'next' on 2011-07-05 at a022613)
65
- + clone: accept config options on the command line
66
- + config: make git_config_parse_parameter a public function
67
- + remote: use new OPT_STRING_LIST
68
- + parse-options: add OPT_STRING_LIST helper
69
- (this branch uses jk/maint-config-param.)
70
-
71
-* jk/maint-config-param (2011-06-22) 6 commits
72
- (merged to 'next' on 2011-07-05 at 2dce181)
73
- + config: use strbuf_split_str instead of a temporary strbuf
74
- + strbuf: allow strbuf_split to work on non-strbufs
75
- + config: avoid segfault when parsing command-line config
76
- + config: die on error in command-line config
77
- + fix "git -c" parsing of values with equals signs
78
- + strbuf_split: add a max parameter
79
- (this branch is used by jk/clone-cmdline-config.)
80
-
81
-* jk/tag-list-multiple-patterns (2011-06-20) 1 commit
82
- (merged to 'next' on 2011-07-05 at 8db1bf0)
83
- + tag: accept multiple patterns for --list
84
-
85
-* jn/gitweb-split-header-html (2011-06-22) 1 commit
86
- (merged to 'next' on 2011-07-05 at c60d9dc)
87
- + gitweb: Refactor git_header_html
88
-
89
-* jn/mime-type-with-params (2011-06-30) 2 commits
90
- (merged to 'next' on 2011-07-05 at 7caaf3b)
91
- + gitweb: Serve */*+xml 'blob_plain' as text/plain with $prevent_xss
92
- + gitweb: Serve text/* 'blob_plain' as text/plain with $prevent_xss
71
+* bw/log-all-ref-updates-doc (2011-07-12) 1 commit
72
+ (merged to 'next' on 2011-07-14 at 31b80a8)
73
+ + Documentation: clearly specify what refs are honored by core.logAllRefUpdates
74
+
75
+* dc/stash-con-untracked (2011-06-26) 1 commit
76
+ (merged to 'next' on 2011-07-13 at 9ed0d1d)
77
+ + stash: Add --include-untracked option to stash and remove all untracked files
78
+
79
+* dz/connect-error-report (2011-07-14) 1 commit
80
+ (merged to 'next' on 2011-07-14 at bf1c775)
81
+ + Do not log unless all connect() attempts fail
82
+
83
+* jc/checkout-reflog-fix (2011-07-06) 3 commits
84
+ (merged to 'next' on 2011-07-14 at 5982cdd)
85
+ + Merge commit 'v1.7.6' into jc/checkout-reflog-fix
86
+ + Merge commit 'v1.7.0' into jc/checkout-reflog-fix
87
+ + Merge commit 'v1.6.0' into jc/checkout-reflog-fix
88
+ (this branch uses jc/maint-checkout-reflog-fix.)
89
+
90
+* jc/maint-checkout-reflog-fix (2011-07-06) 1 commit
91
+ + checkout: do not write bogus reflog entry out
92
+ (this branch is used by jc/checkout-reflog-fix.)
93
+
94
+* jc/maint-mergetool-read-fix (2011-07-01) 1 commit
95
+ (merged to 'next' on 2011-07-14 at 2056a67)
96
+ + mergetool: check return value from read
97
+
98
+* jk/tag-contains-ab (2011-07-14) 5 commits
99
+ (merged to 'next' on 2011-07-14 at 002a9d7)
100
+ + Revert clock-skew based attempt to optimize tag --contains traversal
101
+ + git skew: a tool to find how big a clock skew exists in the history
102
+ (merged to 'next' on 2011-07-05 at f9cf575)
103
+ + default core.clockskew variable to one day
104
+ + limit "contains" traversals based on commit timestamp
105
+ + tag: speed up --contains calculation
106
+ (this branch is tangled with jk/generation-numbers.)
107
+
108
+Reverted the commits near the tip.
109
+
110
+* jl/submodule-add-relurl-wo-upstream (2011-06-06) 3 commits
111
+ (merged to 'next' on 2011-07-13 at f989abb)
112
+ + submodule add: clean up duplicated code
113
+ + submodule add: allow relative repository path even when no url is set
114
+ + submodule add: test failure when url is not configured in superproject
115
+
116
+* jn/gitweb-search (2011-06-22) 4 commits
117
+ (merged to 'next' on 2011-07-13 at 455acdd)
118
+ + gitweb: Make git_search_* subroutines render whole pages
119
+ + gitweb: Clean up code in git_search_* subroutines
120
+ + gitweb: Split body of git_search into subroutines
121
+ + gitweb: Check permissions first in git_search
122
+
123
+* js/maint-add-path-stat-pwd (2011-07-11) 1 commit
124
+ (merged to 'next' on 2011-07-14 at c6fef9d)
125
+ + get_pwd_cwd(): Do not trust st_dev/st_ino blindly
126
+
127
+* ms/help-unknown (2011-07-08) 1 commit
128
+ (merged to 'next' on 2011-07-14 at d7976b4)
129
+ + help_unknown_cmd: do not propose an "unknown" cmd
130
+
131
+* mz/doc-rebase-abort (2011-07-13) 1 commit
132
+ (merged to 'next' on 2011-07-14 at a1a612c)
133
+ + rebase: clarify "restore the original branch"
134
+
135
+* mz/doc-synopsis-verse (2011-07-06) 1 commit
136
+ (merged to 'next' on 2011-07-14 at 34d45e2)
137
+ + Documentation: use [verse] for SYNOPSIS sections
138
139
--------------------------------------------------
95
-[New Topics]
140
+[Stalled]
141
+
142
+* nk/branch-v-abbrev (2011-07-01) 1 commit
143
+ - branch -v: honor core.abbrev
144
+
145
+Perhaps needs an updated commit log message?
146
+
147
+* di/fast-import-doc (2011-07-13) 2 commits
148
+ - doc/fast-import: document feature import-marks-if-exists
149
+ - doc/fast-import: clarify notemodify command
150
+
151
+Comments from fast-import folks?
152
+
153
+* jh/receive-count-limit (2011-05-23) 10 commits
154
+ - receive-pack: Allow server to refuse pushes with too many objects
155
+ - pack-objects: Estimate pack size; abort early if pack size limit is exceeded
156
+ - send-pack/receive-pack: Allow server to refuse pushing too large packs
157
+ - pack-objects: Allow --max-pack-size to be used together with --stdout
158
+ - send-pack/receive-pack: Allow server to refuse pushes with too many commits
159
+ - pack-objects: Teach new option --max-commit-count, limiting #commits in pack
160
+ - receive-pack: Prepare for addition of the new 'limit-*' family of capabilities
161
+ - Tighten rules for matching server capabilities in server_supports()
162
+ - send-pack: Attempt to retrieve remote status even if pack-objects fails
163
+ - Update technical docs to reflect side-band-64k capability in receive-pack
164
+
165
+Would need another round to separate per-pack and per-session limits.
166
+
167
+* jm/mergetool-pathspec (2011-06-22) 2 commits
168
+ - mergetool: Don't assume paths are unmerged
169
+ - mergetool: Add tests for filename with whitespace
170
+
171
+I think this is a good idea, but it probably needs a re-roll.
172
+Cf. $gmane/176254, 176255, 166256
173
+
174
+* jk/generation-numbers (2011-07-14) 7 commits
175
+ - limit "contains" traversals based on commit generation
176
+ - check commit generation cache validity against grafts
177
+ - pretty: support %G to show the generation number of a commit
178
+ - commit: add commit_generation function
179
+ - add metadata-cache infrastructure
180
+ - decorate: allow storing values instead of pointers
181
+ - Merge branch 'jk/tag-contains-ab' (early part) into HEAD
182
+
183
+The initial "tag --contains" de-pessimization without need for generation
184
+numbers is already in; backburnered.
185
+
186
+--------------------------------------------------
187
+[Cooking]
188
189
* jc/maint-reset-unmerged-path (2011-07-13) 1 commit
190
(merged to 'next' on 2011-07-19 at bbc2d54)
191
+ reset [<commit>] paths...: do not mishandle unmerged paths
192
(this branch is used by jc/diff-index-refactor.)
193
194
+Will merge to "master".
195
+
196
* jc/diff-index-refactor (2011-07-13) 2 commits
197
- diff-lib: refactor run_diff_index() and do_diff_cache()
198
- diff-lib: simplify do_diff_cache()
@@ -110,9 +204,10 @@ that is more than 4GB long on platforms with 64-bit ulong.
204
(this branch uses sr/transport-helper-fix.)
205
206
* vi/make-test-vector-less-specific (2011-07-19) 1 commit
113
- - tests: cleanup binary test vector files
207
+ (merged to 'next' on 2011-07-25 at 1973192)
208
+ + tests: cleanup binary test vector files
209
115
-* jk/http-auth-keyring (2011-07-20) 13 commits
210
+* jk/http-auth-keyring (2011-07-21) 14 commits
211
- credentials: add "getpass" helper
212
- credentials: add "store" helper
213
- credentials: add "cache" helper
@@ -121,41 +216,20 @@ that is more than 4GB long on platforms with 64-bit ulong.
216
- allow the user to configure credential helpers
217
- look for credentials in config before prompting
218
- http: use credential API to get passwords
219
+ - fixup! introduce credentials API
220
- introduce credentials API
221
- http: retry authentication failures for all http requests
222
- remote-curl: don't retry auth failures with dumb protocol
223
- improve httpd auth tests
224
- url: decode buffers that are not NUL-terminated
225
130
-* tc/minix (2011-07-20) 1 commit
131
- - Makefile: add Minix configuration options.
226
+Looked mostly reasonable except for the limitation that it is not clear
227
+how to deal with a site at which a user needs to use different passwords
228
+for different repositories.
229
133
---------------------------------------------------
134
-[Stalled]
135
-
136
-* jh/receive-count-limit (2011-05-23) 10 commits
137
- - receive-pack: Allow server to refuse pushes with too many objects
138
- - pack-objects: Estimate pack size; abort early if pack size limit is exceeded
139
- - send-pack/receive-pack: Allow server to refuse pushing too large packs
140
- - pack-objects: Allow --max-pack-size to be used together with --stdout
141
- - send-pack/receive-pack: Allow server to refuse pushes with too many commits
142
- - pack-objects: Teach new option --max-commit-count, limiting #commits in pack
143
- - receive-pack: Prepare for addition of the new 'limit-*' family of capabilities
144
- - Tighten rules for matching server capabilities in server_supports()
145
- - send-pack: Attempt to retrieve remote status even if pack-objects fails
146
- - Update technical docs to reflect side-band-64k capability in receive-pack
147
-
148
-Would need another round to separate per-pack and per-session limits.
149
-
150
-* jm/mergetool-pathspec (2011-06-22) 2 commits
151
- - mergetool: Don't assume paths are unmerged
152
- - mergetool: Add tests for filename with whitespace
153
-
154
-I think this is a good idea, but it probably needs a re-roll.
155
-Cf. $gmane/176254, 176255, 166256
156
-
157
---------------------------------------------------
158
-[Cooking]
230
+* tc/minix (2011-07-20) 1 commit
231
+ (merged to 'next' on 2011-07-25 at 36ad29f)
232
+ + Makefile: add Minix configuration options.
233
234
* sr/transport-helper-fix (2011-07-19) 21 commits
235
(merged to 'next' on 2011-07-19 at e1ef414)
@@ -182,89 +256,41 @@ Cf. $gmane/176254, 176255, 166256
256
+ transport-helper: fix minor leak in push_refs_with_export
257
(this branch is used by sr/transport-helper-fix-rfc.)
258
185
-* bw/log-all-ref-updates-doc (2011-07-12) 1 commit
186
- (merged to 'next' on 2011-07-14 at 31b80a8)
187
- + Documentation: clearly specify what refs are honored by core.logAllRefUpdates
259
+Will merge to "master".
260
189
-* di/fast-import-doc (2011-07-13) 2 commits
190
- - doc/fast-import: document feature import-marks-if-exists
191
- - doc/fast-import: clarify notemodify command
261
+* jk/clone-detached (2011-06-07) 4 commits
262
+ (merged to 'next' on 2011-07-25 at 013d7d0)
263
+ + clone: always fetch remote HEAD
264
+ + make copy_ref globally available
265
+ + consider only branches in guess_remote_head
266
+ + t: add tests for cloning remotes with detached HEAD
267
193
-Comments from fast-import folks?
194
-
195
-* dz/connect-error-report (2011-07-14) 1 commit
196
- (merged to 'next' on 2011-07-14 at bf1c775)
197
- + Do not log unless all connect() attempts fail
268
+Will merge to "master".
269
270
* jc/pack-order-tweak (2011-07-08) 2 commits
200
- - pack-objects: optimize "recency order"
201
- - core: log offset pack data accesses happened
202
-
203
-* jk/generation-numbers (2011-07-14) 8 commits
204
- - limit "contains" traversals based on commit generation
205
- - check commit generation cache validity against grafts
206
- - pretty: support %G to show the generation number of a commit
207
- - commit: add commit_generation function
208
- - add metadata-cache infrastructure
209
- - decorate: allow storing values instead of pointers
210
- - Merge branch 'jk/tag-contains-ab' (early part) into HEAD
211
- + tag: speed up --contains calculation
212
- (this branch is tangled with jk/tag-contains-ab.)
213
-
214
-* js/maint-add-path-stat-pwd (2011-07-11) 1 commit
215
- (merged to 'next' on 2011-07-14 at c6fef9d)
216
- + get_pwd_cwd(): Do not trust st_dev/st_ino blindly
217
-
218
-* ms/help-unknown (2011-07-08) 1 commit
219
- (merged to 'next' on 2011-07-14 at d7976b4)
220
- + help_unknown_cmd: do not propose an "unknown" cmd
221
-
222
-* mz/doc-rebase-abort (2011-07-13) 1 commit
223
- (merged to 'next' on 2011-07-14 at a1a612c)
224
- + rebase: clarify "restore the original branch"
225
-
226
-* jc/maint-mergetool-read-fix (2011-07-01) 1 commit
227
- (merged to 'next' on 2011-07-14 at 2056a67)
228
- + mergetool: check return value from read
229
-
230
-* nk/branch-v-abbrev (2011-07-01) 1 commit
231
- - branch -v: honor core.abbrev
232
-
233
-Perhaps needs an updated commit log message?
234
-
235
-* jc/checkout-reflog-fix (2011-07-06) 3 commits
236
- (merged to 'next' on 2011-07-14 at 5982cdd)
237
- + Merge commit 'v1.7.6' into jc/checkout-reflog-fix
238
- + Merge commit 'v1.7.0' into jc/checkout-reflog-fix
239
- + Merge commit 'v1.6.0' into jc/checkout-reflog-fix
240
- (this branch uses jc/maint-checkout-reflog-fix.)
241
-
242
-* jc/maint-checkout-reflog-fix (2011-07-06) 1 commit
243
- + checkout: do not write bogus reflog entry out
244
- (this branch is used by jc/checkout-reflog-fix.)
245
-
246
-* js/ref-namespaces (2011-07-14) 6 commits
247
- - t5509: (fixup) partial readability fix
248
- - ref namespaces: tests
249
- - ref namespaces: documentation
250
- - ref namespaces: Support remote repositories via upload-pack and receive-pack
251
- - ref namespaces: infrastructure
252
- - Fix prefix handling in ref iteration functions
253
-
254
-* mz/doc-synopsis-verse (2011-07-06) 1 commit
255
- (merged to 'next' on 2011-07-14 at 34d45e2)
256
- + Documentation: use [verse] for SYNOPSIS sections
271
+ (merged to 'next' on 2011-07-25 at 1460c31)
272
+ + pack-objects: optimize "recency order"
273
+ + core: log offset pack data accesses happened
274
+
275
+* js/ref-namespaces (2011-07-21) 5 commits
276
+ (merged to 'next' on 2011-07-25 at 5b7dcfe)
277
+ + ref namespaces: tests
278
+ + ref namespaces: documentation
279
+ + ref namespaces: Support remote repositories via upload-pack and receive-pack
280
+ + ref namespaces: infrastructure
281
+ + Fix prefix handling in ref iteration functions
282
283
* rc/histogram-diff (2011-07-12) 7 commits
259
- - xdiff/xprepare: use a smaller sample size for histogram diff
260
- - xdiff/xprepare: skip classification
261
- - teach --histogram to diff
262
- - t4033-diff-patience: factor out tests
263
- - xdiff/xpatience: factor out fall-back-diff function
264
- - xdiff/xprepare: refactor abort cleanups
265
- - xdiff/xprepare: use memset()
266
-
267
-* rr/revert-cherry-pick-continue (2011-07-19) 18 commits
284
+ (merged to 'next' on 2011-07-25 at 3351028)
285
+ + xdiff/xprepare: use a smaller sample size for histogram diff
286
+ + xdiff/xprepare: skip classification
287
+ + teach --histogram to diff
288
+ + t4033-diff-patience: factor out tests
289
+ + xdiff/xpatience: factor out fall-back-diff function
290
+ + xdiff/xprepare: refactor abort cleanups
291
+ + xdiff/xprepare: use memset()
292
+
293
+* rr/revert-cherry-pick-continue (2011-07-27) 18 commits
294
- revert: Introduce --continue to continue the operation
295
- revert: Don't implictly stomp pending sequencer operation
296
- revert: Remove sequencer state when no commits are pending
@@ -284,19 +310,6 @@ Perhaps needs an updated commit log message?
310
- config: Introduce functions to write non-standard file
311
- advice: Introduce error_resolve_conflict
312
287
-Getting very close, I would think...
288
-
289
-* dc/stash-con-untracked (2011-06-26) 1 commit
290
- (merged to 'next' on 2011-07-13 at 9ed0d1d)
291
- + stash: Add --include-untracked option to stash and remove all untracked files
292
-
293
-* jn/gitweb-search (2011-06-22) 4 commits
294
- (merged to 'next' on 2011-07-13 at 455acdd)
295
- + gitweb: Make git_search_* subroutines render whole pages
296
- + gitweb: Clean up code in git_search_* subroutines
297
- + gitweb: Split body of git_search into subroutines
298
- + gitweb: Check permissions first in git_search
299
-
313
* en/merge-recursive (2011-07-14) 50 commits
314
- fixup! Do not assume that qsort is stable
315
- t3030: fix accidental success in symlink rename
@@ -349,31 +362,4 @@ Getting very close, I would think...
362
- t6042: Add failing testcase for rename/modify/add-source conflict
363
- t6042: Add a testcase where git deletes an untracked file
364
352
-Looked at up to 29/48; looks basically sound.
353
-
354
-* jk/tag-contains-ab (2011-07-14) 5 commits
355
- (merged to 'next' on 2011-07-14 at 002a9d7)
356
- + Revert clock-skew based attempt to optimize tag --contains traversal
357
- + git skew: a tool to find how big a clock skew exists in the history
358
- (merged to 'next' on 2011-07-05 at f9cf575)
359
- + default core.clockskew variable to one day
360
- + limit "contains" traversals based on commit timestamp
361
- + tag: speed up --contains calculation
362
- (this branch is tangled with jk/generation-numbers.)
363
-
364
-Reverted the commits near the tip.
365
-
366
-* jk/clone-detached (2011-06-07) 4 commits
367
- - clone: always fetch remote HEAD
368
- - make copy_ref globally available
369
- - consider only branches in guess_remote_head
370
- - t: add tests for cloning remotes with detached HEAD
371
-
372
-Somewhat involved bugfix. Seems to expose breakage in t5800 without the
373
-stalled "transport-helper-fix" series.
374
-
375
-* jl/submodule-add-relurl-wo-upstream (2011-06-06) 3 commits
376
- (merged to 'next' on 2011-07-13 at f989abb)
377
- + submodule add: clean up duplicated code
378
- + submodule add: allow relative repository path even when no url is set
379
- + submodule add: test failure when url is not configured in superproject
365
+Looked at up to 38/48; looks basically sound.