1 To: git@vger.kernel.org
3 Subject: What's cooking in git.git (Aug 2015, #02; Wed, 12)
4 X-master-at: 130be8eeb8b9b7c89751c3cab3bc54dc6f2d43e6
5 X-next-at: dc45ae627aaa61b73b573b0f51469393f122b5f6
7 What's cooking in git.git (Aug 2015, #02; Wed, 12)
8 --------------------------------------------------
10 Here are the topics that have been cooking. Commits prefixed with
11 '-' are only in 'pu' (proposed updates) while commits prefixed with
14 The second batch of topics have graduated to 'master'. Most
15 notably, the rewritten "git am" is in. Also "worktree add" is
18 You can find the changes described here in the integration branches
19 of the repositories listed at
21 http://git-blame.blogspot.com/p/git-public-repositories.html
23 --------------------------------------------------
24 [Graduated to "master"]
26 * ad/bisect-cleanup (2015-08-03) 6 commits
27 (merged to 'next' on 2015-08-03 at 13b9314)
28 + bisect: don't mix option parsing and non-trivial code
29 + bisect: simplify the addition of new bisect terms
30 + bisect: replace hardcoded "bad|good" by variables
31 + Documentation/bisect: revise overall content
32 + Documentation/bisect: move getting help section to the end
33 + bisect: correction of typo
34 (this branch is used by ad/bisect-terms.)
36 Originally merged to 'next' on 2015-07-09
38 Code and documentation clean-up to "git bisect".
41 * dt/reflog-tests (2015-07-28) 2 commits
42 (merged to 'next' on 2015-08-03 at 9d2fa1a)
43 + tests: remove some direct access to .git/logs
44 + t/t7509: remove unnecessary manipulation of reflog
46 Tests that assume how reflogs are represented on the filesystem too
47 much have been corrected.
50 * dt/unpack-trees-cache-tree-revalidate (2015-07-28) 1 commit
51 (merged to 'next' on 2015-08-03 at 5b0d620)
52 + unpack-trees: populate cache-tree on successful merge
54 The code to perform multi-tree merges has been taught to repopulate
55 the cache-tree upon a successful merge into the index, so that
56 subsequent "diff-index --cached" (hence "status") and "write-tree"
57 (hence "commit") will go faster.
59 The same logic in "git checkout" may now be removed, but that is a
63 * es/worktree-add (2015-07-20) 5 commits
64 (merged to 'next' on 2015-08-03 at 9771a44)
65 + config: rename "gc.pruneWorktreesExpire" to "gc.worktreePruneExpire"
66 + Documentation/git-worktree: wordsmith worktree-related manpages
67 + Documentation/config: fix stale "git prune --worktree" reference
68 + Documentation/git-worktree: fix incorrect reference to file "locked"
69 + Documentation/git-worktree: consistently use term "linked working tree"
70 (this branch is used by dt/notes-multiple and es/worktree-add-cleanup.)
72 Originally merged to 'next' on 2015-07-20
74 Remove remaining cruft from "git checkout --to", which
75 transitioned to "git worktree add".
78 * es/worktree-add-cleanup (2015-08-05) 25 commits
79 (merged to 'next' on 2015-08-12 at 9168b42)
80 + Documentation/git-worktree: fix duplicated 'from'
81 + Documentation/config: mention "now" and "never" for 'expire' settings
82 + Documentation/git-worktree: fix broken 'linkgit' invocation
83 + checkout: drop intimate knowledge of newly created worktree
84 + worktree: populate via "git reset --hard" rather than "git checkout"
85 + worktree: avoid resolving HEAD unnecessarily
86 + worktree: make setup of new HEAD distinct from worktree population
87 + worktree: detect branch-name/detached and error conditions locally
88 + worktree: add_worktree: construct worktree-population command locally
89 + worktree: elucidate environment variables intended for child processes
90 + worktree: make branch creation distinct from worktree population
91 + worktree: add: suppress auto-vivication with --detach and no <branch>
92 + worktree: make --detach mutually exclusive with -b/-B
93 + worktree: introduce options container
94 + worktree: simplify new branch (-b/-B) option checking
95 + worktree: improve worktree setup message
96 + branch: publish die_if_checked_out()
97 + checkout: teach check_linked_checkout() about symbolic link HEAD
98 + checkout: check_linked_checkout: simplify symref parsing
99 + checkout: check_linked_checkout: improve "already checked out" aesthetic
100 + checkout: generalize die_if_checked_out() branch name argument
101 + checkout: die_if_checked_out: simplify strbuf management
102 + checkout: improve die_if_checked_out() robustness
103 + checkout: name check_linked_checkouts() more meaningfully
104 + checkout: avoid resolving HEAD unnecessarily
105 (this branch is used by dt/notes-multiple; uses es/worktree-add.)
107 Originally merged to 'next' on 2015-07-29
109 The "new-worktree-mode" hack in "checkout" that was added in
110 nd/multiple-work-trees topic has been removed by updating the
111 implementation of new "worktree add".
114 * pt/am-builtin (2015-08-04) 46 commits
115 (merged to 'next' on 2015-08-12 at 10d0c56)
116 + git-am: add am.threeWay config variable
117 + builtin-am: remove redirection to git-am.sh
118 + builtin-am: check for valid committer ident
119 + builtin-am: implement legacy -b/--binary option
120 + builtin-am: implement -i/--interactive
121 + builtin-am: support and auto-detect mercurial patches
122 + builtin-am: support and auto-detect StGit series files
123 + builtin-am: support and auto-detect StGit patches
124 + builtin-am: rerere support
125 + builtin-am: invoke post-applypatch hook
126 + builtin-am: invoke pre-applypatch hook
127 + builtin-am: invoke applypatch-msg hook
128 + builtin-am: support automatic notes copying
129 + builtin-am: invoke post-rewrite hook
130 + builtin-am: implement -S/--gpg-sign, commit.gpgsign
131 + builtin-am: implement --committer-date-is-author-date
132 + builtin-am: implement --ignore-date
133 + builtin-am: pass git-apply's options to git-apply
134 + builtin-am: implement --[no-]scissors
135 + builtin-am: support --keep-cr, am.keepcr
136 + builtin-am: implement --[no-]message-id, am.messageid
137 + builtin-am: implement -k/--keep, --keep-non-patch
138 + builtin-am: implement -u/--utf8
139 + builtin-am: handle stray state directory
140 + builtin-am: bypass git-mailinfo when --rebasing
141 + builtin-am: implement --rebasing mode
142 + builtin-am: implement --3way
143 + cache-tree: introduce write_index_as_tree()
144 + builtin-am: implement -s/--signoff
145 + builtin-am: exit with user friendly message on failure
146 + builtin-am: implement -q/--quiet
147 + builtin-am: reject patches when there's a session in progress
148 + builtin-am: implement --abort
149 + builtin-am: implement --skip
150 + builtin-am: don't parse mail when resuming
151 + builtin-am: implement --resolved/--continue
152 + builtin-am: refuse to apply patches if index is dirty
153 + builtin-am: implement committing applied patch
154 + builtin-am: apply patch with git-apply
155 + builtin-am: extract patch and commit info with git-mailinfo
156 + builtin-am: auto-detect mbox patches
157 + builtin-am: split out mbox/maildir patches with git-mailsplit
158 + builtin-am: implement patch queue mechanism
159 + builtin-am: implement skeletal builtin am
160 + wrapper: implement xfopen()
161 + wrapper: implement xopen()
162 (this branch is used by pt/am-builtin-options.)
164 Originally merged to 'next' on 2015-07-23
169 * sb/parse-options-codeformat (2015-07-29) 1 commit
170 (merged to 'next' on 2015-08-03 at f81993b)
171 + parse-options: align curly braces for all options
174 * sb/remove-unused-var-from-builtin-add (2015-07-31) 1 commit
175 (merged to 'next' on 2015-08-03 at f5e568e)
176 + add: remove dead code
178 --------------------------------------------------
181 * bb/remote-get-url (2015-08-05) 1 commit
182 - remote: add get-url subcommand
184 "git remote" learned "get-url" subcommand to show the URL for a
185 given remote name used for fetching and pushing.
187 Waiting for a reroll.
191 * cb/open-noatime-clear-errno (2015-08-12) 1 commit
192 - git_open_noatime: return with errno=0 on success
194 When trying to see that an object does not exist, a state errno
195 leaked from our "first try to open a packfile with O_NOATIME and
196 then if it fails retry without it" logic on a system that refuses
197 O_NOATIME. This confused us and caused us to die, saying that the
198 packfile is unreadable, when we should have just reported that the
199 object does not exist in that packfile to the caller.
201 Will merge to 'next'.
204 * jk/guess-repo-name-regression-fix (2015-08-10) 2 commits
205 (merged to 'next' on 2015-08-12 at 4cba33c)
206 + clone: use computed length in guess_dir_name
207 + clone: add tests for output directory
208 (this branch is used by ps/guess-repo-name-at-root.)
210 "git clone $URL" in recent releases of Git contains a regression in
211 the code that invents a new repository name incorrectly based on
212 the $URL. This has been corrected.
214 Will merge to 'master'.
217 * ps/guess-repo-name-at-root (2015-08-10) 3 commits
218 (merged to 'next' on 2015-08-12 at 088860f)
219 + clone: abort if no dir name could be guessed
220 + clone: do not use port number as dir name
221 + clone: do not include authentication data in guessed dir
222 (this branch uses jk/guess-repo-name-regression-fix.)
224 "git clone $URL", when cloning from a site whose sole purpose is to
225 host a single repository (hence, no path after <scheme>://<site>/),
226 tried to use the site name as the new repository name, but did not
227 remove username or password when <site> part was of the form
228 <user>@<pass>:<host>. The code is taught to redact these.
230 Will merge to 'master'.
233 * jk/notes-merge-config (2015-08-05) 4 commits
235 - notes: add notes.merge option to select default strategy
236 - notes: add tests for --commit/--abort/--strategy exclusivity
237 - notes: document cat_sort_uniq rewriteMode
239 "git notes merge" can be told with "--strategy=<how>" option how to
240 automatically handle conflicts; this can now be configured by
241 setting notes.merge configuration variable.
243 The last step to add more specific notes.$ref.merge looked
244 questionable. What is queued is v3, v4 exists, but needs an
247 Waiting for a reroll.
251 * mk/submodule-gitdir-path (2015-08-05) 2 commits
252 - path: implement common_dir handling in git_path_submodule()
253 - submodule refactor: use git_path_submodule() in add_submodule_odb()
255 The submodule code has been taught to work better with separate
256 work trees created via "git worktree add".
258 Waiting for a review.
262 * mm/pull-upload-pack (2015-07-30) 1 commit
263 (merged to 'next' on 2015-08-12 at 14d2a52)
264 + pull.sh: quote $upload_pack when passing it to git-fetch
266 "git pull" in recent releases of Git has a regression in the code
267 that allows custom path to the --upload-pack=<program>. This has
270 Will merge to 'maint'.
272 Note that this is irrelevant for 'master' with "git pull" rewritten
276 * ps/t1509-chroot-test-fixup (2015-08-05) 2 commits
277 (merged to 'next' on 2015-08-12 at 6d10ea5)
278 + tests: fix cleanup after tests in t1509-root-worktree
279 + tests: fix broken && chains in t1509-root-worktree
281 t1509 test that requires a dedicated VM environment had some
282 bitrot, which has been corrected.
284 Will merge to 'master'.
287 * pt/am-builtin-options (2015-08-12) 3 commits
288 (merged to 'next' on 2015-08-12 at e57f754)
289 + am: let --signoff override --no-signoff
290 + am: let command-line options override saved options
291 + test_terminal: redirect child process' stdin to a pty
293 After "git am --opt1" stops, running "git am --opt2" pays attention
294 to "--opt2" only for the patch that caused the original invocation
297 Will merge to 'master'.
300 * sb/remove-get-pathspec (2015-08-03) 1 commit
301 - builtin/mv: remove get_pathspec()
307 * sb/submodule-helper (2015-08-07) 1 commit
308 - submodule: implement `module_list` as a builtin helper
310 The beginning of "git submodule" rewritten in C.
313 * tb/complete-rebase-i-edit-todo (2015-08-05) 1 commit
314 (merged to 'next' on 2015-08-12 at 9606c21)
315 + completion: offer '--edit-todo' during interactive rebase
317 The command-line completion script (in contrib/) has been updated.
319 Will merge to 'master'.
322 * dt/untracked-subdir (2015-08-07) 2 commits
323 - DONTMERGE: wait for Duy to Ack or comment
324 - untracked-cache: fix subdirectory handling
325 (this branch uses dt/untracked-sparse.)
327 Waiting for a review.
330 * jk/test-with-x (2015-08-07) 2 commits
331 (merged to 'next' on 2015-08-12 at 06576a1)
332 + test-lib: disable trace when test is not verbose
333 + test-lib: turn off "-x" tracing during chain-lint check
335 Running tests with the "-x" option to make them verbose had some
336 unpleasant interactions with other features of the test suite.
338 Will merge to 'master'.
341 * ad/cygwin-wants-rename (2015-08-07) 1 commit
342 - config.mak.uname: Cygwin needs OBJECT_CREATION_USES_RENAMES
348 * bc/connect-plink (2015-08-11) 1 commit
349 - t5601-clone: remove broken and pointless check for plink.exe
351 Test updates for Windows.
355 for now ($gmane/275758).
358 * ee/clean-remove-dirs (2015-08-11) 1 commit
359 (merged to 'next' on 2015-08-12 at fc41b09)
360 + t7300-clean: require POSIXPERM for chmod 0 test
362 Test updates for Windows.
364 Will merge to 'master'.
367 * jc/finalize-temp-file (2015-08-10) 1 commit
368 (merged to 'next' on 2015-08-12 at 6fe62fe)
369 + sha1_file.c: rename move_temp_to_file() to finalize_object_file()
371 Long overdue micro clean-up.
373 Will merge to 'master'.
376 * jk/git-path (2015-08-10) 16 commits
377 (merged to 'next' on 2015-08-12 at 7ebe864)
378 + memoize common git-path "constant" files
379 + get_repo_path: refactor path-allocation
380 + find_hook: keep our own static buffer
381 + refs.c: remove_empty_directories can take a strbuf
382 + refs.c: avoid git_path assignment in lock_ref_sha1_basic
383 + refs.c: avoid repeated git_path calls in rename_tmp_log
384 + refs.c: simplify strbufs in reflog setup and writing
385 + path.c: drop git_path_submodule
386 + refs.c: remove extra git_path calls from read_loose_refs
387 + remote.c: drop extraneous local variable from migrate_file
388 + prefer mkpathdup to mkpath in assignments
389 + prefer git_pathdup to git_path in some possibly-dangerous cases
390 + add_to_alternates_file: don't add duplicate entries
391 + t5700: modernize style
392 + cache.h: complete set of git_path_submodule helpers
393 + cache.h: clarify documentation for git_path, et al
395 git_path() and mkpath() are handy helper functions but it is easy
396 to misuse, as the callers need to be careful to keep the number of
397 active results below 4. Their uses have been reduced.
399 Will merge to 'master'.
402 * jk/long-error-messages (2015-08-11) 2 commits
403 (merged to 'next' on 2015-08-12 at 36303cd)
404 + vreportf: avoid intermediate buffer
405 + vreportf: report to arbitrary filehandles
407 The codepath to produce error messages had a hard-coded limit to
408 the size of the message, primarily to avoid memory allocation while
411 Will merge to 'master'.
414 * nd/dwim-wildcards-as-pathspecs (2015-08-11) 1 commit
415 (merged to 'next' on 2015-08-12 at bb73f4d)
416 + t2019: skip test requiring '*' in a file name non Windows
418 Test updates for Windows.
420 Will merge to 'master'.
422 --------------------------------------------------
425 * nd/list-files (2015-02-09) 21 commits
426 - t3080: tests for git-list-files
427 - list-files: -M aka diff-cached
428 - list-files -F: show submodules with the new indicator '&'
429 - list-files: add -F/--classify
430 - list-files: show directories as well as files
431 - list-files: do not show duplicate cached entries
432 - list-files: sort output and remove duplicates
433 - list-files: add -t back
434 - list-files: add -1 short for --no-column
435 - list-files: add -R/--recursive short for --max-depth=-1
436 - list-files: -u does not imply showing stages
437 - list-files: make alias 'ls' default to 'list-files'
438 - list-files: a user friendly version of ls-files and more
439 - ls-files: support --max-depth
440 - ls-files: add --column
441 - ls-files: add --color to highlight file names
442 - ls-files: buffer full item in strbuf before printing
443 - ls_colors.c: highlight submodules like directories
444 - ls_colors.c: add a function to color a file name
445 - ls_colors.c: parse color.ls.* from config file
446 - ls_colors.c: add $LS_COLORS parsing code
448 A new "git list-files" Porcelain command, "ls-files" with bells and
451 Reroll to base on wt-status work ($gmane/265142) has seen some
452 positive discussions.
454 Waiting for a further polished reroll ($gmane/265534).
457 * mh/numparse (2015-03-19) 14 commits
458 . diff_opt_parse(): use convert_i() when handling --abbrev=<num>
459 . diff_opt_parse(): use convert_i() when handling "-l<num>"
460 . opt_arg(): simplify pointer handling
461 . opt_arg(): report errors parsing option values
462 . opt_arg(): use convert_i() in implementation
463 . opt_arg(): val is always non-NULL
464 . builtin_diff(): detect errors when parsing --unified argument
465 . handle_revision_opt(): use convert_ui() when handling "--abbrev="
466 . strtoul_ui(), strtol_i(): remove functions
467 . handle_revision_opt(): use convert_i() when handling "-<digit>"
468 . handle_revision_opt(): use skip_prefix() in many places
469 . write_subdirectory(): use convert_ui() for parsing mode
470 . cacheinfo_callback(): use convert_ui() when handling "--cacheinfo"
471 . numparse: new module for parsing integral numbers
473 Many codepaths use unchecked use of strtol() and friends (or even
474 worse, atoi()). Introduce a set of wrappers that try to be more
481 * kk/log-merges-config (2015-04-21) 5 commits
482 - bash-completion: add support for git-log --merges= and log.merges
483 - t4202-log: add tests for --merges=
484 - Documentation: add git-log --merges= option and log.merges config. var
485 - log: honor log.merges= option
486 - revision: add --merges={show|only|hide} option
488 "git log" (but not other commands in the "log" family) learned to
489 pay attention to the log.merges configuration variable that can be
490 set to "show" (the normal behaviour), "only" (hide non-merge
491 commits), or "hide" (hide merge commits). --merges=(show|only|hide)
492 can be used to override the setting from the command line.
494 The documentation may need to be updated once more ($gmane/267250).
495 Waiting for a reroll.
498 * mg/httpd-tests-update-for-apache-2.4 (2015-04-08) 2 commits
499 - t/lib-git-svn: check same httpd module dirs as lib-httpd
500 - t/lib-httpd: load mod_unixd
502 This is the first two commits in a three-patch series $gmane/266962
505 with updated log message ($gmane/268061).
508 * bw/portability-solaris (2015-07-20) 3 commits
509 - tests: fix sed usage in tests to work around broken xpg4/sed on Solaris
510 - tests: fix sed usage in tests to work around broken xpg4/sed on Solaris
511 - tests: modify tr expressions so that xpg4/tr handles it on Solaris
513 Needs another reroll?
517 * jc/clone-bundle (2015-04-30) 1 commit
518 - repack: optionally create a clone.bundle
520 Waiting for further work.
524 * mg/index-read-error-messages (2015-06-01) 2 commits
525 - messages: uniform error messages for index write
526 - show-index: uniform error messages for index read
532 * hv/submodule-config (2015-06-15) 4 commits
533 - do not die on error of parsing fetchrecursesubmodules option
534 - use new config API for worktree configurations of submodules
535 - extract functions for submodule config set and lookup
536 - implement submodule config API for lookup of .gitmodules values
538 The gitmodules API accessed from the C code learned to cache stuff
541 Needs another reroll?
545 * jk/log-missing-default-HEAD (2015-06-03) 1 commit
546 - log: diagnose empty HEAD more clearly
548 "git init empty && git -C empty log" said "bad default revision 'HEAD'",
549 which was found to be a bit confusing to new users.
551 What's the status of this one?
554 * wp/sha1-name-negative-match (2015-06-08) 2 commits
555 - sha1_name.c: introduce '^{/!-<negative pattern>}' notation
556 - test for '!' handling in rev-parse's named commits
558 Introduce "branch^{/!-<pattern>}" notation to name a commit
559 reachable from branch that does not match the given pattern.
564 * mk/utf8-no-iconv-warn (2015-06-08) 1 commit
565 - utf8.c: print warning about disabled iconv
567 Warn when a reencoding is requested in a build without iconv
568 support, as the end user is likely to get an unexpected result. I
569 think the same level of safety should be added to a build with
570 iconv support when the specified encoding is not available, but the
571 patch does not go there.
576 * ak/format-patch-odir-config (2015-06-19) 1 commit
577 - format-patch: introduce format.outputDirectory configuration
579 Reroll exists but didn't pick it up as it seemed to be still
580 collecting review comments.
586 * ad/bisect-terms (2015-08-03) 4 commits
587 - bisect: allow setting any user-specified in 'git bisect start'
588 - bisect: add 'git bisect terms' to view the current terms
589 - bisect: add the terms old/new
590 - bisect: sanity check on terms
592 The use of 'good/bad' in "git bisect" made it confusing to use when
593 hunting for a state change that is not a regression (e.g. bugfix).
594 The command learned 'old/new' and then allows the end user to
595 say e.g. "bisect start --term-old=fast --term=new=slow" to find a
596 performance regression.
598 Michael's idea to make 'good/bad' more intelligent does have
599 certain attractiveness ($gname/272867), and makes some of the work
600 on this topic a moot point.
605 * mh/notes-allow-reading-treeish (2015-07-13) 1 commit
606 - notes: allow treeish expressions as notes ref
608 Some "git notes" operations, e.g. "git log --notes=<note>", should
609 be able to read notes from any tree-ish that is shaped like a notes
610 tree, but the notes infrastructure required that the argument must
611 be a ref under refs/notes/. Loosen it to require a valid ref only
612 when the operation would update the notes (in which case we must
613 have a place to store the updated notes tree, iow, a ref).
615 Needs update to docs.
619 * jc/diff-b-m (2015-02-23) 5 commits
622 - diffcore-rename: allow easier debugging
623 - diffcore-rename.c: add locate_rename_src()
624 - diffcore-break: allow debugging
626 "git diff -B -M" produced incorrect patch when the postimage of a
627 completely rewritten file is similar to the preimage of a removed
628 file; such a resulting file must not be expressed as a rename from
631 The fix in this patch is broken, unfortunately.
634 * pw/remote-set-url-fetch (2014-11-26) 1 commit
635 . remote: add --fetch and --both options to set-url
640 * tr/remerge-diff (2014-11-10) 9 commits
641 - t4213: avoid "|" in sed regexp
642 - log --remerge-diff: show what the conflict resolution changed
643 - name-hash: allow dir hashing even when !ignore_case
644 - merge-recursive: allow storing conflict hunks in index
645 - merge_diff_mode: fold all merge diff variants into an enum
646 - combine-diff: do not pass revs->dense_combined_merges redundantly
647 - merge-recursive: -Xindex-only to leave worktree unchanged
648 - merge-recursive: internal flag to avoid touching the worktree
649 - merge-recursive: remove dead conditional in update_stages()
651 "log -p" output learns a new way to let users inspect a merge
652 commit by showing the differences between the automerged result
653 with conflicts the person who recorded the merge would have seen
654 and the final conflict resolution that was recorded in the merge.
656 Waiting for a reroll.
660 * tg/perf-lib-test-perf-cleanup (2013-09-19) 2 commits
661 - perf-lib: add test_perf_cleanup target
662 - perf-lib: split starting the test from the execution
664 Add test_perf_cleanup shell function to the perf suite, that allows
665 the script writers to define a test with a clean-up action.
670 * jc/show-branch (2014-03-24) 5 commits
671 - show-branch: use commit slab to represent bitflags of arbitrary width
672 - show-branch.c: remove "all_mask"
673 - show-branch.c: abstract out "flags" operation
674 - show-branch.c: lift all_mask/all_revs to a global static
675 - show-branch.c: update comment style
677 Waiting for the final step to lift the hard-limit.
679 --------------------------------------------------
682 * sg/config-name-only (2015-08-10) 2 commits
683 (merged to 'next' on 2015-08-12 at c658fe4)
684 + completion: list variable names reliably with 'git config --name-only'
685 + config: add '--name-only' option to list only variable names
687 "git config --list" output was hard to parse when values consist of
688 multiple lines. "--name-only" option is added to help this.
690 Will merge to 'master'.
693 * mh/tempfile (2015-08-12) 16 commits
694 (merged to 'next' on 2015-08-12 at 80efcb7)
695 + credential-cache--daemon: use tempfile module
696 + credential-cache--daemon: delete socket from main()
697 + gc: use tempfile module to handle gc.pid file
698 + lock_repo_for_gc(): compute the path to "gc.pid" only once
699 + diff: use tempfile module
700 + setup_temporary_shallow(): use tempfile module
701 + write_shared_index(): use tempfile module
702 + register_tempfile(): new function to handle an existing temporary file
703 + tempfile: add several functions for creating temporary files
704 + prepare_tempfile_object(): new function, extracted from create_tempfile()
705 + tempfile: a new module for handling temporary files
706 + commit_lock_file(): use get_locked_file_path()
707 + lockfile: add accessor get_lock_file_path()
708 + lockfile: add accessors get_lock_file_fd() and get_lock_file_fp()
709 + create_bundle(): duplicate file descriptor to avoid closing it twice
710 + lockfile: move documentation to lockfile.h and lockfile.c
712 The "lockfile" API has been rebuilt on top of a new "tempfile" API.
714 Will merge to 'master'.
717 * jh/strbuf-read-use-read-in-full (2015-08-10) 1 commit
718 (merged to 'next' on 2015-08-12 at db16247)
719 + strbuf_read(): skip unnecessary strbuf_grow() at eof
721 strbuf_read() used to have one extra iteration (and an unnecessary
722 strbuf_grow() of 8kB), which was eliminated.
724 Will merge to 'master'.
727 * sb/check-return-from-read-ref (2015-08-03) 1 commit
728 (merged to 'next' on 2015-08-12 at 4a1c801)
729 + transport-helper: die on errors reading refs.
731 Will merge to 'master'.
734 * jk/negative-hiderefs (2015-08-07) 2 commits
735 (merged to 'next' on 2015-08-12 at bdc478d)
736 + refs: support negative transfer.hideRefs
737 + docs/config.txt: reorder hideRefs config
739 A negative !ref entry in multi-value transfer.hideRefs
740 configuration can be used to say "don't hide this one".
742 Will merge to 'master'.
745 * mh/get-remote-group-fix (2015-07-28) 4 commits
746 (merged to 'next' on 2015-08-12 at b77820e)
747 + get_remote_group(): use skip_prefix()
748 + get_remote_group(): eliminate superfluous call to strcspn()
749 + get_remote_group(): rename local variable "space" to "wordlen"
750 + get_remote_group(): handle remotes with single-character names
752 An off-by-one error made "git remote" to mishandle a remote with a
753 single letter nickname.
755 Will merge to 'master'.
758 * ta/docfix-index-format-tech (2015-07-28) 1 commit
759 (merged to 'next' on 2015-08-12 at 662d88a)
760 + typofix for index-format.txt
762 Will merge to 'master'.
765 * dt/notes-multiple (2015-08-11) 2 commits
766 (merged to 'next' on 2015-08-12 at 0052055)
767 + notes: handle multiple worktrees
768 + worktrees: add find_shared_symref
770 When linked worktree is used, simultaneous "notes merge" instances
771 for the same ref in refs/notes/* are prevented from stomping on
774 Will merge to 'master'.
777 * dt/refs-pseudo (2015-08-11) 6 commits
778 (merged to 'next' on 2015-08-12 at 7078eb6)
779 + pseudoref: check return values from read_ref()
780 (merged to 'next' on 2015-08-03 at 3eafd33)
781 + sequencer: replace write_cherry_pick_head with update_ref
782 + bisect: use update_ref
783 + pseudorefs: create and use pseudoref update and delete functions
784 + refs: add ref_type function
785 + refs: introduce pseudoref and per-worktree ref concepts
787 To prepare for allowing a different "ref" backend to be plugged in
788 to the system, update_ref()/delete_ref() have been taught about
789 ref-like things like MERGE_HEAD that are per-worktree (they will
790 always be written to the filesystem inside $GIT_DIR).
792 Will merge to 'master'.
795 * dt/untracked-sparse (2015-07-31) 1 commit
796 (merged to 'next' on 2015-08-12 at 234434d)
797 + untracked-cache: support sparse checkout
798 (this branch is used by dt/untracked-subdir.)
800 Allow untracked cache (experimental) to be used when sparse
801 checkout (experimental) is also in use.
803 Will merge to 'master'.
806 * kd/pull-rebase-autostash (2015-07-22) 1 commit
807 (merged to 'next' on 2015-08-12 at de88e8e)
808 + pull: allow dirty tree when rebase.autostash enabled
810 "git pull --rebase" has been taught to pay attention to
811 rebase.autostash configuration.
813 Will merge to 'master'.
816 * kn/for-each-tag-branch (2015-08-03) 11 commits
817 (merged to 'next' on 2015-08-03 at d9e94b9)
818 + for-each-ref: add '--contains' option
819 + ref-filter: implement '--contains' option
820 + parse-options.h: add macros for '--contains' option
821 + parse-option: rename parse_opt_with_commit()
822 + for-each-ref: add '--merged' and '--no-merged' options
823 + ref-filter: implement '--merged' and '--no-merged' options
824 + ref-filter: add parse_opt_merge_filter()
825 + for-each-ref: add '--points-at' option
826 + ref-filter: implement '--points-at' option
827 + tag: libify parse_opt_points_at()
828 + t6302: for-each-ref tests for ref-filter APIs
830 Originally merged to 'next' on 2015-07-15
832 Some features from "git tag -l" and "git branch -l" have been made
833 available to "git for-each-ref" so that eventually the unified
834 implementation can be shared across all three, in a follow-up
838 * jc/rerere (2015-07-30) 21 commits
839 - rerere: un-nest merge() further
840 - rerere: use "struct rerere_id" instead of "char *" for conflict ID
841 - rerere: call conflict-ids IDs
842 - rerere: further clarify do_rerere_one_path()
843 - rerere: further de-dent do_plain_rerere()
844 - rerere: refactor "replay" part of do_plain_rerere()
845 - rerere: explain the remainder
846 - rerere: explain "rerere forget" codepath
847 - rerere: explain the primary codepath
848 - rerere: explain MERGE_RR management helpers
849 - rerere: fix benign off-by-one non-bug and clarify code
850 - rerere: explain the rerere I/O abstraction
851 - rerere: do not leak mmfile[] for a path with multiple stage #1 entries
852 - rerere: stop looping unnecessarily
853 - rerere: drop want_sp parameter from is_cmarker()
854 - rerere: report autoupdated paths only after actually updating them
855 - rerere: write out each record of MERGE_RR in one go
856 - rerere: lift PATH_MAX limitation
857 - rerere: plug conflict ID leaks
858 - rerere: handle conflicts with multiple stage #1 entries
859 - rerere: fix an off-by-one non-bug
860 (this branch is used by jc/rerere-multi.)
862 Code clean-up and minor fixes (so far).
865 * jc/rerere-multi (2015-07-31) 7 commits
866 . t4200: rerere a merge with two identical conflicts
868 . rerere: allow multiple variants to exist
869 - rerere: delay the recording of preimage
870 - rerere: handle leftover rr-cache/$ID directory and postimage files
871 - rerere: scan $GIT_DIR/rr-cache/$ID when instantiating a rerere_id
872 - rerere: split conflict ID further
873 (this branch uses jc/rerere.)
875 This is a contination of jc/rerere topic.
878 * jc/merge-drop-old-syntax (2015-04-29) 1 commit
879 (merged to 'next' on 2015-08-03 at a52c2b2)
880 + merge: drop 'git merge <message> HEAD <commit>' syntax
882 Originally merged to 'next' on 2015-05-28
884 Stop supporting "git merge <message> HEAD <commit>" syntax that
885 has been deprecated since October 2007.
887 Will keep in 'next' during the 2.6 cycle.
889 --------------------------------------------------
892 * tf/gitweb-project-listing (2015-03-19) 4 commits
893 - gitweb: make category headings into links when they are directories
894 - gitweb: optionally set project category from its pathname
895 - gitweb: add a link under the search box to clear a project filter
896 - gitweb: if the PATH_INFO is incomplete, use it as a project_filter
898 Update gitweb to make it more pleasant to deal with a hierarchical
899 forest of repositories.
901 A fresh restart will not be rejected, but ejected from my tree for
905 * jc/a-lone-dash-stands-for-previous-branch (2015-03-16) 1 commit
906 - "-" and "@{-1}" on various programs
908 Lose special case code to make a lone dash "-" mean the previous
909 branch aka "@{-1}" from a handful subcommands, and instead support
910 the notation throughout the system by reimplementing it at the
913 Needs tests, documentation updates, etc. Also does only a half-way
914 job dealing with range notation, which needs to be fixed before the
915 series goes anywhere.
918 * jc/push-tags-also (2015-05-29) 1 commit
919 - push --tags: push tags *in addition to* other stuff
921 "git fetch --tags" learned to fetch tags in addition to other stuff
922 a few years ago, but "git push --tags" didn't. Now it does.
924 A change to push out more than before always invites "what if the
925 user makes a mistake" worries.
930 * nd/pathspec-strip-fix (2015-04-18) 1 commit
931 - pathspec: adjust prefixlen after striping trailing slash
933 Does not quite fix ($gmane/267614).