]> git.ipfire.org Git - thirdparty/git.git/commitdiff
What's cooking (2018/10 #04)
authorJunio C Hamano <gitster@pobox.com>
Fri, 19 Oct 2018 05:42:16 +0000 (14:42 +0900)
committerJunio C Hamano <gitster@pobox.com>
Fri, 19 Oct 2018 06:00:27 +0000 (15:00 +0900)
whats-cooking.txt

index 77e91b24468e3a54516b9ef2e5ade1db7f1d7acd..6abff7644712e0efd6c5699af32379ee96fd9e78 100644 (file)
@@ -1,10 +1,10 @@
 To: git@vger.kernel.org
 Bcc: lwn@lwn.net
-Subject: What's cooking in git.git (Oct 2018, #03; Wed, 17)
-X-master-at: a4b8ab5363a32f283a61ef3a962853556d136c0e
-X-next-at: 3377e82b59874c0e626c00f29bf7526a27f29d65
+Subject: What's cooking in git.git (Oct 2018, #04; Fri, 19)
+X-master-at: c4df23f7927d8d00e666a3c8d1b3375f1dc8a3c1
+X-next-at: 500967bb5e73b67708a64a4360867cf2407ba880
 
-What's cooking in git.git (Oct 2018, #03; Wed, 17)
+What's cooking in git.git (Oct 2018, #04; Fri, 19)
 --------------------------------------------------
 
 Here are the topics that have been cooking.  Commits prefixed with
@@ -12,6 +12,11 @@ Here are the topics that have been cooking.  Commits prefixed with
 '+' are in 'next'.  The ones marked with '.' do not appear in any of
 the integration branches, but I am still holding onto them.
 
+Two large set of topics on "rebase in C" and "rebase -i in C" are
+now in 'next'.  A handful of improvements around "git help", "git
+grep", and "git status" are in 'master', as well as other internal
+changes.
+
 Note that "cf. <msg-id>" are not meant as "clear all of these and
 you are home free".  They are primarily to prevent me from merging
 topics that are not ready to 'next' by mistake and remind me where
@@ -25,285 +30,415 @@ of the repositories listed at
 --------------------------------------------------
 [Graduated to "master"]
 
-* ab/commit-graph-progress (2018-09-20) 3 commits
-  (merged to 'next' on 2018-09-24 at 76f2f5c1e3)
- + gc: fix regression in 7b0f229222 impacting --quiet
- + commit-graph verify: add progress output
- + commit-graph write: add progress output
- (this branch is used by ds/commit-graph-leakfix.)
-
- (Originally merged to 'next' on 2018-09-20 at 24ca94b1d4)
+* bp/read-cache-parallel (2018-10-11) 7 commits
+  (merged to 'next' on 2018-10-12 at ed6edde799)
+ + read-cache: load cache entries on worker threads
+ + ieot: add Index Entry Offset Table (IEOT) extension
+ + read-cache: load cache extensions on a worker thread
+ + config: add new index.threads config setting
+ + eoie: add End of Index Entry (EOIE) extension
+ + read-cache: clean up casting and byte decoding
+ + read-cache.c: optimize reading index format v4
 
- Generation of (experimental) commit-graph files have so far been
- fairly silent, even though it takes noticeable amount of time in a
- meaningfully large repository.  The users will now see progress
- output.
+ A new extension to the index file has been introduced, which allows
+ the file to be read in parallel.
 
 
-* ds/commit-graph-with-grafts (2018-08-21) 8 commits
-  (merged to 'next' on 2018-10-09 at 851a457102)
- + commit-graph: close_commit_graph before shallow walk
- + commit-graph: not compatible with uninitialized repo
- + commit-graph: not compatible with grafts
- + commit-graph: not compatible with replace objects
- + test-repository: properly init repo
- + commit-graph: update design document
- + refs.c: upgrade for_each_replace_ref to be a each_repo_ref_fn callback
- + refs.c: migrate internal ref iteration to pass thru repository argument
+* bp/rename-test-env-var (2018-09-28) 6 commits
+  (merged to 'next' on 2018-10-12 at 201e451d20)
+ + t0000: do not get self-test disrupted by environment warnings
+ + preload-index: update GIT_FORCE_PRELOAD_TEST support
+ + read-cache: update TEST_GIT_INDEX_VERSION support
+ + fsmonitor: update GIT_TEST_FSMONITOR support
+ + preload-index: use git_env_bool() not getenv() for customization
+ + t/README: correct spelling of "uncommon"
 
- The recently introduced commit-graph auxiliary data is incompatible
- with mechanisms such as replace & grafts that "breaks" immutable
- nature of the object reference relationship.  Disable optimizations
- based on its use (and updating existing commit-graph) when these
- incompatible features are in use in the repository.
+ Some environment variables that control the runtime options of Git
+ used during tests are getting renamed for consistency.
 
 
-* ds/reachable-final-cleanup (2018-09-25) 1 commit
-  (merged to 'next' on 2018-10-12 at 32c6d5f55a)
- + commit-reach: cleanups in can_all_from_reach...
+* ds/commit-graph-leakfix (2018-10-07) 3 commits
+  (merged to 'next' on 2018-10-12 at 8cc7f2f1e9)
+ + commit-graph: reduce initial oid allocation
+ + builtin/commit-graph.c: UNLEAK variables
+ + commit-graph: clean up leaked memory during write
 
- Code already in 'master' is further cleaned-up by this patch.
+ Code clean-up.
 
 
-* dz/credential-doc-url-matching-rules (2018-09-27) 1 commit
-  (merged to 'next' on 2018-10-12 at 4547952530)
- + doc: clarify gitcredentials path component matching
+* jc/how-to-document-api (2018-09-29) 1 commit
+  (merged to 'next' on 2018-10-12 at 7c9bd82285)
+ + CodingGuidelines: document the API in *.h files
 
  Doc update.
 
 
-* en/merge-cleanup (2018-09-20) 4 commits
-  (merged to 'next' on 2018-10-09 at f3a00b506f)
- + merge-recursive: rename merge_file_1() and merge_content()
- + merge-recursive: remove final remaining caller of merge_file_one()
- + merge-recursive: avoid wrapper function when unnecessary and wasteful
- + merge-recursive: set paths correctly when three-way merging content
- (this branch is used by en/merge-cleanup-more.)
+* jt/avoid-ls-refs (2018-10-07) 4 commits
+  (merged to 'next' on 2018-10-12 at 5775aabbc1)
+ + fetch: do not list refs if fetching only hashes
+ + transport: list refs before fetch if necessary
+ + transport: do not list refs if possible
+ + transport: allow skipping of ref listing
 
- Code clean-up.
+ Over some transports, fetching objects with an exact commit object
+ name can be done without first seeing the ref advertisements.  The
+ code has been optimized to exploit this.
 
 
-* en/status-multiple-renames-to-the-same-target-fix (2018-09-27) 1 commit
-  (merged to 'next' on 2018-10-12 at 4976fc61a0)
- + commit: fix erroneous BUG, 'multiple renames on the same target? how?'
+* jt/cache-tree-allow-missing-object-in-partial-clone (2018-10-10) 1 commit
+  (merged to 'next' on 2018-10-12 at 152ad8e336)
+ + cache-tree: skip some blob checks in partial clone
 
- The code in "git status" sometimes hit an assertion failure.  This
- was caused by a structure that was reused without cleaning the data
- used for the first run, which has been corrected.
+ In a partial clone that will lazily be hydrated from the
+ originating repository, we generally want to avoid "does this
+ object exist (locally)?" on objects that we deliberately omitted
+ when we created the clone.  The cache-tree codepath (which is used
+ to write a tree object out of the index) however insisted that the
+ object exists, even for paths that are outside of the partial
+ checkout area.  The code has been updated to avoid such a check.
 
 
-* fe/doc-updates (2018-09-21) 3 commits
-  (merged to 'next' on 2018-10-10 at 2eea3a88bc)
- + git-describe.1: clarify that "human readable" is also git-readable
- + git-column.1: clarify initial description, provide examples
- + git-archimport.1: specify what kind of Arch we're talking about
+* jt/fetch-tips-in-partial-clone (2018-09-21) 2 commits
+  (merged to 'next' on 2018-10-12 at 521b3fb44d)
+ + fetch: in partial clone, check presence of targets
+ + connected: document connectivity in partial clones
 
- Doc updates.
+ "git fetch $repo $object" in a partial clone did not correctly
+ fetch the asked-for object that is referenced by an object in
+ promisor packfile, which has been fixed.
 
 
-* jk/check-everything-connected-is-long-gone (2018-09-25) 1 commit
-  (merged to 'next' on 2018-10-12 at 4ce30c9a30)
- + receive-pack: update comment with check_everything_connected
+* jt/non-blob-lazy-fetch (2018-10-04) 2 commits
+  (merged to 'next' on 2018-10-12 at 7466c6bd7d)
+ + fetch-pack: exclude blobs when lazy-fetching trees
+ + fetch-pack: avoid object flags if no_dependents
 
- Comment fix.
+ A partial clone that is configured to lazily fetch missing objects
+ will on-demand issue a "git fetch" request to the originating
+ repository to fill not-yet-obtained objects.  The request has been
+ optimized for requesting a tree object (and not the leaf blob
+ objects contained in it) by telling the originating repository that
+ no blobs are needed.
 
 
-* jk/delta-islands-with-bitmap-reuse-delta-fix (2018-09-19) 1 commit
-  (merged to 'next' on 2018-10-09 at 10e58be2af)
- + pack-objects: handle island check for "external" delta base
+* nd/complete-fetch-multiple-args (2018-09-21) 1 commit
+  (merged to 'next' on 2018-10-10 at f78e14123c)
+ + completion: support "git fetch --multiple"
 
- Fix interactions between two recent topics.
+ Teach bash completion that "git fetch --multiple" only takes remote
+ names as arguments and no refspecs.
 
 
-* jk/oideq-hasheq-cleanup (2018-10-04) 1 commit
-  (merged to 'next' on 2018-10-12 at 7c9b5681da)
- + more oideq/hasheq conversions
+* nd/help-commands-verbose-by-default (2018-10-03) 1 commit
+  (merged to 'next' on 2018-10-12 at 32de8f53e0)
+ + help -a: improve and make --verbose default
 
- Code clean-up.
+ "git help -a" and "git help -av" give different pieces of
+ information, and generally the "verbose" version is more friendly
+ to the new users.  "git help -a" by default now uses the more
+ verbose output (with "--no-verbose", you can go back to the
+ original).  Also "git help -av" now lists aliases and external
+ commands, which it did not used to.
+
+
+* nd/status-refresh-progress (2018-09-17) 1 commit
+  (merged to 'next' on 2018-10-12 at 9240c05add)
+ + status: show progress bar if refreshing the index takes too long
+
+ "git status" learns to show progress bar when refreshing the index
+ takes a long time.
+
+
+* nd/the-index (2018-09-21) 23 commits
+  (merged to 'next' on 2018-10-10 at 16e2e2e947)
+ + revision.c: reduce implicit dependency the_repository
+ + revision.c: remove implicit dependency on the_index
+ + ws.c: remove implicit dependency on the_index
+ + tree-diff.c: remove implicit dependency on the_index
+ + submodule.c: remove implicit dependency on the_index
+ + line-range.c: remove implicit dependency on the_index
+ + userdiff.c: remove implicit dependency on the_index
+ + rerere.c: remove implicit dependency on the_index
+ + sha1-file.c: remove implicit dependency on the_index
+ + patch-ids.c: remove implicit dependency on the_index
+ + merge.c: remove implicit dependency on the_index
+ + merge-blobs.c: remove implicit dependency on the_index
+ + ll-merge.c: remove implicit dependency on the_index
+ + diff-lib.c: remove implicit dependency on the_index
+ + read-cache.c: remove implicit dependency on the_index
+ + diff.c: remove implicit dependency on the_index
+ + grep.c: remove implicit dependency on the_index
+ + diff.c: remove the_index dependency in textconv() functions
+ + blame.c: rename "repo" argument to "r"
+ + combine-diff.c: remove implicit dependency on the_index
+ + diff.c: reduce implicit dependency on the_index
+ + read-cache.c: remove 'const' from index_has_changes()
+ + archive.c: remove implicit dependency the_repository
+ (this branch is used by sb/more-repo-in-api.)
 
+ Various codepaths in the core-ish part learn to work on an
+ arbitrary in-core index structure, not necessarily the default
+ instance "the_index".
 
-* jn/gc-auto (2018-07-17) 1 commit
-  (merged to 'next' on 2018-10-10 at 9f0f1f770e)
- + gc: do not return error for prior errors in daemonized mode
- (this branch uses jn/gc-auto-prep.)
 
- "gc --auto" ended up calling exit(-1) upon error, which has been
- corrected to use exit(1).  Also the error reporting behaviour when
- daemonized has been updated to exit with zero status when stopping
- due to a previously discovered error (which implies there is no
- point running gc to improve the situation); we used to exit with
- failure in such a case.
+* pw/diff-color-moved-ws-fix (2018-10-04) 5 commits
+  (merged to 'next' on 2018-10-12 at 73badc83fe)
+ + diff --color-moved: fix a memory leak
+ + diff --color-moved-ws: fix another memory leak
+ + diff --color-moved-ws: fix a memory leak
+ + diff --color-moved-ws: fix out of bounds string access
+ + diff --color-moved-ws: fix double free crash
+
+ Various fixes to "diff --color-moved-ws".
+
 
+* rs/grep-no-recursive (2018-10-03) 1 commit
+  (merged to 'next' on 2018-10-12 at 1499dc98ba)
+ + grep: add -r/--[no-]recursive
+
+ Unlike "grep", "git grep" by default recurses to the whole tree.
+ The command learned "git grep --recursive" option, so that "git
+ grep --no-recursive" can serve as a synonym to setting the
+ max-depth to 0.
 
-* jn/gc-auto-prep (2018-07-17) 2 commits
-  (merged to 'next' on 2018-10-10 at 4ab6a62f62)
- + gc: exit with status 128 on failure
- + gc: improve handling of errors reading gc.log
- (this branch is used by jn/gc-auto.)
+
+* rs/oidset-on-khash (2018-10-04) 5 commits
+  (merged to 'next' on 2018-10-12 at 8bb0152b3f)
+ + oidset: uninline oidset_init()
+ + oidset: use khash
+ + khash: factor out kh_release_*
+ + fetch-pack: load tip_oids eagerly iff needed
+ + fetch-pack: factor out is_unmatched_ref()
+
+ The oidset API was built on top of the oidmap API which in turn is
+ on the hashmap API.  Replace the implementation to build on top of
+ the khash API and gain performance.
+
+
+* sm/show-superproject-while-conflicted (2018-09-28) 1 commit
+  (merged to 'next' on 2018-10-12 at 0334353131)
+ + rev-parse: --show-superproject-working-tree should work during a merge
+
+ A corner-case bugfix.
+
+
+* ss/wt-status-committable (2018-10-03) 5 commits
+  (merged to 'next' on 2018-10-10 at ea30d8819d)
+ + roll wt_status_state into wt_status and populate in the collect phase
+ + wt-status.c: set the committable flag in the collect phase
+ + t7501: add test of "commit --dry-run --short"
+ + wt-status: rename commitable to committable
+ + wt-status.c: move has_unmerged earlier in the file
+
+ Code clean-up in the internal machinery used by "git status" and
+ "git commit --dry-run".
+
+
+* tb/filter-alternate-refs (2018-10-09) 4 commits
+  (merged to 'next' on 2018-10-12 at 21c14722f1)
+ + transport.c: introduce core.alternateRefsPrefixes
+ + transport.c: introduce core.alternateRefsCommand
+ + transport.c: extract 'fill_alternate_refs_command'
+ + transport: drop refnames from for_each_alternate_ref
+
+ When pushing into a repository that borrows its objects from an
+ alternate object store, "git receive-pack" that responds to the
+ push request on the other side lists the tips of refs in the
+ alternate to reduce the amount of objects transferred.  This
+ sometimes is detrimental when the number of refs in the alternate
+ is absurdly large, in which case the bandwidth saved in potentially
+ fewer objects transferred is wasted in excessively large ref
+ advertisement.  The alternate refs that are advertised are now
+ configurable with a pair of configuration variables.
+
+--------------------------------------------------
+[New Topics]
+
+* ab/reject-alias-loop (2018-10-19) 1 commit
+ - alias: detect loops in mixed execution mode
+
+ Two (or more) aliases that mutually refer to each other can form an
+ infinite loop; we now attempt to notice and stop.
+
+ Will merge to 'next'.
+
+
+* cb/remove-dead-init (2018-10-19) 2 commits
+ - multi-pack-index: avoid dead store for struct progress
+ - unpack-trees: avoid dead store for struct progress
 
  Code clean-up.
 
+ Will merge to 'next'.
 
-* jn/mailmap-update (2018-09-25) 1 commit
-  (merged to 'next' on 2018-10-10 at fa2b394bd5)
- + mailmap: consistently normalize brian m. carlson's name
 
- The mailmap file update.
+* ds/ci-commit-graph-and-midx (2018-10-19) 1 commit
+ - ci: add optional test variables
 
+ One of our CI tests to run with "unusual/experimental/random"
+ settings now also uses commti-graph and midx.
 
-* js/mingw-wants-vista-or-above (2018-10-04) 3 commits
-  (merged to 'next' on 2018-10-12 at 3a174c3d43)
- + mingw: bump the minimum Windows version to Vista
- + mingw: set _WIN32_WINNT explicitly for Git for Windows
- + compat/poll: prepare for targeting Windows Vista
+ Will merge to 'next'.
 
- The minimum version of Windows supported by Windows port fo Git is
- now set to Vista.
 
+* ds/reachable-first-parent-fix (2018-10-19) 1 commit
+ - commit-reach: fix first-parent heuristic
 
-* ma/commit-graph-docs (2018-09-27) 4 commits
-  (merged to 'next' on 2018-10-12 at eafaf79b5a)
- + Doc: refer to the "commit-graph file" with dash
- + git-commit-graph.txt: refer to "*commit*-graph file"
- + git-commit-graph.txt: typeset more in monospace
- + git-commit-graph.txt: fix bullet lists
+ Correct performance regression in commit ancestry computation when
+ generation numbers are involved.
 
Doc update.
Will merge to 'next'.
 
 
-* ma/config-doc-update (2018-09-20) 2 commits
-  (merged to 'next' on 2018-10-09 at 312a873a2a)
- + git-config.txt: fix 'see: above' note
- + Doc: use `--type=bool` instead of `--bool`
+* jk/test-tool-help (2018-10-18) 1 commit
+ - test-tool: show tool list on error
 
- Doc update.
+ Developer support.
+
+ Will merge to 'next'.
 
 
-* ma/mailing-list-address-in-git-help (2018-09-29) 1 commit
-  (merged to 'next' on 2018-10-12 at 4c3737d234)
- + git doc: direct bug reporters to mailing list archive
+* jk/unused-function (2018-10-19) 1 commit
+ - config.mak.dev: enable -Wunused-function
 
- Doc update.
+ Developer support.
 
+ Will merge to 'next'.
 
-* ma/t1400-undebug-test (2018-09-28) 1 commit
-  (merged to 'next' on 2018-10-12 at d736f83435)
- + t1400: drop debug `echo` to actually execute `test`
 
- Test fix.
+* js/diff-notice-has-drive-prefix (2018-10-19) 1 commit
+ - diff: don't attempt to strip prefix from absolute Windows paths
 
+ "git diff /a/b/c /a/d/f" noticed these are full paths with shared
+ leading prefix "/a", but failed to notice a similar fact about "git
+ diff D:/a/b/c D:/a/d/f", which has been corrected.
 
-* md/test-cleanup (2018-10-07) 7 commits
-  (merged to 'next' on 2018-10-10 at 7e0bf1b573)
- + tests: order arguments to git-rev-list properly
- + t9109: don't swallow Git errors upstream of pipes
- + tests: don't swallow Git errors upstream of pipes
- + t/*: fix ordering of expected/observed arguments
- + tests: standardize pipe placement
- + Documentation: add shell guidelines
- + t/README: reformat Do, Don't, Keep in mind lists
+ Want tests.
 
- Various test scripts have been updated for style and also correct
- handling of exit status of various commands.
 
+* js/pack-objects-mutex-init-fix (2018-10-19) 3 commits
+ - pack-objects (mingw): initialize `packing_data` mutex in the correct spot
+ - pack-objects (mingw): demonstrate a segmentation fault with large deltas
+ - pack-objects: fix typo 'detla' -> 'delta'
 
-* mw/doc-typofixes (2018-10-07) 3 commits
-  (merged to 'next' on 2018-10-12 at 97297b8ce9)
- + docs: typo: s/isimilar/similar/
- + docs: graph: remove unnecessary `graph_update()' call
- + docs: typo: s/go/to/
+ A mutex used in "git pack-objects" were not correctly initialized
+ and this caused "git repack" to dump core on Windows.
 
Typofixes.
Will merge to 'next'.
 
 
-* nd/packobjectshook-doc-fix (2018-09-29) 1 commit
-  (merged to 'next' on 2018-10-12 at 85d75f5219)
- + config.txt: correct the note about uploadpack.packObjectsHook
+* jt/upload-pack-v2-fix-shallow (2018-10-19) 3 commits
+ - upload-pack: clear flags before each v2 request
+ - upload-pack: make want_obj not global
+ - upload-pack: make have_obj not global
 
- Doc update.
+ "git fetch" over protocol v2 into a shallow repository failed to
+ fetch full history behind a new tip of history that was diverged
+ before the cut-off point of the history that was previously fetched
+ shallowly.
 
+ Will merge to 'next'.
 
-* rj/header-check (2018-09-20) 8 commits
-  (merged to 'next' on 2018-10-09 at 7fa9c68ef0)
- + delta-islands.h: add missing forward declarations (hdr-check)
- + midx.h: add missing forward declarations (hdr-check)
- + refs/refs-internal.h: add missing declarations (hdr-check)
- + refs/packed-backend.h: add missing declaration (hdr-check)
- + refs/ref-cache.h: add missing declarations (hdr-check)
- + ewah/ewok_rlw.h: add missing include (hdr-check)
- + json-writer.h: add missing include (hdr-check)
- + Makefile: add a hdr-check target
 
- Header files clean-up.
+* pw/am-rebase-read-author-script (2018-10-19) 5 commits
+ - sequencer: use read_author_script()
+ - add read_author_script() to libgit
+ - am: rename read_author_script()
+ - am: improve author-script error reporting
+ - am: don't die in read_author_script()
 
 
-* rs/sequencer-oidset-insert-avoids-dups (2018-10-03) 1 commit
-  (merged to 'next' on 2018-10-12 at b294394711)
- + sequencer: use return value of oidset_insert()
+* rj/header-guards (2018-10-18) 1 commit
+ - headers: normalize the spelling of some header guards
 
  Code clean-up.
 
+ Will merge to 'next'.
 
-* rt/rebase-typofix (2018-09-28) 1 commit
-  (merged to 'next' on 2018-10-12 at 58691d20df)
- + git-rebase.sh: fix typos in error messages
 
- Typofix.
+* sb/submodule-helper-remove-cruft (2018-10-18) 1 commit
+ - builtin/submodule--helper: remove debugging leftover tracing
+
+ Code clean-up.
+
+ Will merge to 'next'.
+
+
+* sb/submodule-url-to-absolute (2018-10-18) 1 commit
+ - submodule helper: convert relative URL to absolute URL if needed
 
+ Some codepaths failed to form a proper URL when .gitmodules record
+ the URL to a submodule repository as relative to the repository of
+ superproject, which has been corrected.
 
-* sf/complete-stash-list (2018-10-07) 1 commit
-  (merged to 'next' on 2018-10-12 at ff0e9a0805)
- + git-completion.bash: add completion for stash list
+ Will merge to 'next'.
 
- The completion script (in contrib/) learned to complete a handful of
- options "git stash list" command takes.
 
+* sg/doc-show-branch-typofix (2018-10-18) 1 commit
+ - doc: fix small typo in git show-branch
 
-* tg/t5551-with-curl-7.61.1 (2018-09-24) 2 commits
-  (merged to 'next' on 2018-10-10 at 5ada84ed7a)
- + t5551: compare sorted cookies files
- + t5551: move setup code inside test_expect blocks
+ Docfix.
 
- Test update.
- Supersedes tz/t5551-with-curl-7.61.1 topic
+ Will merge to 'next'.
 
 
-* tq/refs-internal-comment-fix (2018-09-17) 1 commit
-  (merged to 'next' on 2018-10-09 at 422313bbd0)
- + refs: docstring typo
+* tq/branch-create-wo-branch-get (2018-10-18) 1 commit
+ - builtin/branch.c: remove useless branch_get
 
- Fix for typo in a sample code in comment.
+ Code clean-up.
+
+ Will merge to 'next'.
 
 
-* ts/alias-of-alias (2018-09-17) 3 commits
-  (merged to 'next' on 2018-10-09 at ac19b4730b)
- + t0014: introduce an alias testing suite
- + alias: show the call history when an alias is looping
- + alias: add support for aliases of an alias
+* tq/branch-style-fix (2018-10-18) 1 commit
+ - branch: trivial style fix
+
+ Code clean-up.
+
+ Will merge to 'next'.
 
- An alias that expands to another alias has so far been forbidden,
- but now it is allowed to create such an alias.
+
+* jc/receive-deny-current-branch-fix (2018-10-19) 1 commit
+ - receive: denyCurrentBranch=updateinstead should not blindly update
+
+ The receive.denyCurrentBranch=updateInstead codepath kicked in even
+ when the push should have been rejected due to other reasons, such
+ as it does not fast-forward or the update-hook rejects it, which
+ has been corrected.
 
 --------------------------------------------------
-[New Topics]
+[Stalled]
 
-* en/merge-cleanup-more (2018-10-16) 4 commits
+* lt/date-human (2018-07-09) 1 commit
+ - Add 'human' date format
+
+ A new date format "--date=human" that morphs its output depending
+ on how far the time is from the current time has been introduced.
+ "--date=auto" can be used to use this new format when the output is
+ goint to the pager or to the terminal and otherwise the default
+ format.
+
+--------------------------------------------------
+[Cooking]
+
+* en/merge-cleanup-more (2018-10-18) 2 commits
  - merge-recursive: avoid showing conflicts with merge branch before HEAD
  - merge-recursive: improve auto-merging messages with path collisions
- - merge-recursive: increase marker length with depth of recursion
- - t6036: add testcase where virtual merge base contains nested conflicts
 
  Further clean-up of merge-recursive machinery.
 
+ Will merge to 'next'.
+
 
 * ld/p4-unshelve (2018-10-16) 3 commits
- - git-p4: fully support unshelving changelists
- - git-p4: unshelve into refs/remotes/p4-unshelved, not refs/remotes/p4/unshelved
- - git-p4: do not fail in verbose mode for missing 'fileSize' key
+  (merged to 'next' on 2018-10-19 at 35339798f9)
+ + git-p4: fully support unshelving changelists
+ + git-p4: unshelve into refs/remotes/p4-unshelved, not refs/remotes/p4/unshelved
+ + git-p4: do not fail in verbose mode for missing 'fileSize' key
 
  "git p4 unshelve" improvements.
 
- Will merge to 'next'.
+ Will merge to 'master'.
 
 
 * mg/gpg-parse-tighten (2018-10-15) 1 commit
@@ -336,18 +471,19 @@ of the repositories listed at
  with the "NewHash".
 
 
-* ds/mingw-default-ident (2018-10-16) 3 commits
- - mingw: use domain information for default email
- - getpwuid(mingw): provide a better default for the user name
- - getpwuid(mingw): initialize the structure only once
+* js/mingw-default-ident (2018-10-16) 3 commits
+  (merged to 'next' on 2018-10-19 at 2f710c811b)
+ + mingw: use domain information for default email
+ + getpwuid(mingw): provide a better default for the user name
+ + getpwuid(mingw): initialize the structure only once
 
  The logic to select the default user name and e-mail on Windows has
  been improved.
 
- Will merge to 'next'.
+ Will merge to 'master'.
 
 
-* ds/mingw-http-ssl (2018-10-16) 3 commits
+* js/mingw-http-ssl (2018-10-16) 3 commits
  - http: when using Secure Channel, ignore sslCAInfo by default
  - http: add support for disabling SSL revocation checks in cURL
  - http: add support for selecting SSL backends at runtime
@@ -381,30 +517,17 @@ of the repositories listed at
  On hold, monitoring the discussion.
  cf. <nycvar.QRO.7.76.6.1810151657080.4546@tvgsbejvaqbjf.bet>
 
---------------------------------------------------
-[Stalled]
-
-* lt/date-human (2018-07-09) 1 commit
- - Add 'human' date format
-
- A new date format "--date=human" that morphs its output depending
- on how far the time is from the current time has been introduced.
- "--date=auto" can be used to use this new format when the output is
- goint to the pager or to the terminal and otherwise the default
- format.
-
---------------------------------------------------
-[Cooking]
 
 * ab/gc-doc-update (2018-10-11) 1 commit
- - gc doc: mention the commit-graph in the intro
+  (merged to 'next' on 2018-10-19 at 84347d36a7)
+ + gc doc: mention the commit-graph in the intro
 
  The documentation of "git gc" has been updated to mention that it
  is no longer limited to "pruning away crufts" but also updates
  ancillary files like commit-graph as a part of repository
  optimization.
 
- Will merge to 'next'.
+ Will merge to 'master'.
 
 
 * du/branch-show-current (2018-10-16) 2 commits
@@ -435,20 +558,21 @@ of the repositories listed at
  Will merge to 'master'.
 
 
-* ot/ref-filter-plug-leaks (2018-10-11) 3 commits
. ref-filter: free item->value and item->value->s
. ls-remote: release memory instead of UNLEAK
. ref-filter: free memory from used_atom
+* ot/ref-filter-plug-leaks (2018-10-19) 3 commits
- ref-filter: free item->value and item->value->s
- ls-remote: release memory instead of UNLEAK
- ref-filter: free memory from used_atom
 
  Plugging a handful of memory leaks in the ref-filter codepath.
 
Seems to break t6300 standalone and when merged to 'pu'.
Will merge to 'next'.
 
 
 * rv/send-email-cc-misc-by (2018-10-16) 3 commits
- - send-email: also pick up cc addresses from -by trailers
- - send-email: only consider lines containing @ or <> for automatic Cc'ing
- - Documentation/git-send-email.txt: style fixes
+  (merged to 'next' on 2018-10-19 at 2c1e5f75af)
+ + send-email: also pick up cc addresses from -by trailers
+ + send-email: only consider lines containing @ or <> for automatic Cc'ing
+ + Documentation/git-send-email.txt: style fixes
 
  "git send-email" learned to grab address-looking string on any
  trailer whose name ends with "-by"; --suppress-cc=misc-by on the
@@ -458,15 +582,16 @@ of the repositories listed at
  This is a backward-incompatible change that may surprise existing
  users.
 
- Will merge to 'next'.
+ Will merge to 'master'.
 
 
 * du/cherry-is-plumbing (2018-10-12) 1 commit
- - doc: move git-cherry to plumbing
+  (merged to 'next' on 2018-10-19 at ffe6c5449e)
+ + doc: move git-cherry to plumbing
 
  Doc update to mark "git cherry" as a plumbing command.
 
- Will merge to 'next'.
+ Will merge to 'master'.
 
 
 * du/get-tar-commit-id-is-plumbing (2018-10-12) 1 commit
@@ -505,42 +630,34 @@ of the repositories listed at
  updated to use "size_t".
 
 
-* jc/how-to-document-api (2018-09-29) 1 commit
-  (merged to 'next' on 2018-10-12 at 7c9bd82285)
- + CodingGuidelines: document the API in *.h files
-
- Doc update.
-
- Will merge to 'master'.
-
-
 * jc/rebase-in-c-5-test-typofix (2018-10-11) 1 commit
- - rebase: fix typoes in error messages
+  (merged to 'next' on 2018-10-19 at 08c9d86ffd)
+ + rebase: fix typoes in error messages
  (this branch uses pk/rebase-in-c, pk/rebase-in-c-2-basic, pk/rebase-in-c-3-acts, pk/rebase-in-c-4-opts and pk/rebase-in-c-5-test; is tangled with js/rebase-in-c-5.5-work-with-rebase-i-in-c and pk/rebase-in-c-6-final.)
 
  Typofix.
 
- Will merge to 'next' together with pk/rebase-i-in-c-6-final.
+ Will merge to 'master' together with pk/rebase-i-in-c-6-final.
 
 
-* jc/war-on-string-list (2018-09-28) 1 commit
+* jc/war-on-string-list (2018-10-19) 1 commit
  - fetch: replace string-list used as a look-up table with a hashmap
 
- Replace two string-list instances used as look-up tables in "git
- fetch" with a pair of hashmaps.  WIP as there is another such use
- of string-list nearby that should be converted at the same time.
+ Replace three string-list instances used as look-up tables in "git
+ fetch" with hashmaps.
 
 
 * js/rebase-i-break (2018-10-12) 2 commits
- - rebase -i: introduce the 'break' command
- - rebase -i: clarify what happens on a failed `exec`
+  (merged to 'next' on 2018-10-19 at 6db9b14495)
+ + rebase -i: introduce the 'break' command
+ + rebase -i: clarify what happens on a failed `exec`
  (this branch uses ag/rebase-i-in-c; is tangled with ag/sequencer-reduce-rewriting-todo, js/rebase-in-c-5.5-work-with-rebase-i-in-c and pk/rebase-in-c-6-final.)
 
  "git rebase -i" learned a new insn, 'break', that the user can
  insert in the to-do list.  Upon hitting it, the command returns
  control back to the user.
 
- Will merge to 'next' after 'pk/rebase-in-c-6-final'.
+ Will merge to 'master' after 'pk/rebase-in-c-6-final'.
 
 
 * js/remote-archive-v2 (2018-09-28) 4 commits
@@ -560,21 +677,6 @@ of the repositories listed at
  Breaks interoperability.
 
 
-* jt/non-blob-lazy-fetch (2018-10-04) 2 commits
-  (merged to 'next' on 2018-10-12 at 7466c6bd7d)
- + fetch-pack: exclude blobs when lazy-fetching trees
- + fetch-pack: avoid object flags if no_dependents
-
- A partial clone that is configured to lazily fetch missing objects
- will on-demand issue a "git fetch" request to the originating
- repository to fill not-yet-obtained objects.  The request has been
- optimized for requesting a tree object (and not the leaf blob
- objects contained in it) by telling the originating repository that
- no blobs are needed.
-
- Will merge to 'master'.
-
-
 * ma/t7005-bash-workaround (2018-09-28) 1 commit
   (merged to 'next' on 2018-10-16 at 543e1e6574)
  + t7005-editor: quote filename to fix whitespace-issue
@@ -584,78 +686,27 @@ of the repositories listed at
  Will merge to 'master'.
 
 
-* nd/help-commands-verbose-by-default (2018-10-03) 1 commit
-  (merged to 'next' on 2018-10-12 at 32de8f53e0)
- + help -a: improve and make --verbose default
-
- "git help -a" and "git help -av" give different pieces of
- information, and generally the "verbose" version is more friendly
- to the new users.  "git help -a" by default now uses the more
- verbose output (with "--no-verbose", you can go back to the
- original).  Also "git help -av" now lists aliases and external
- commands, which it did not used to.
-
- Will merge to 'master'.
-
-
-* pw/diff-color-moved-ws-fix (2018-10-04) 5 commits
-  (merged to 'next' on 2018-10-12 at 73badc83fe)
- + diff --color-moved: fix a memory leak
- + diff --color-moved-ws: fix another memory leak
- + diff --color-moved-ws: fix a memory leak
- + diff --color-moved-ws: fix out of bounds string access
- + diff --color-moved-ws: fix double free crash
-
- Various fixes to "diff --color-moved-ws".
-
- Will merge to 'master'.
-
-
-* rs/grep-no-recursive (2018-10-03) 1 commit
-  (merged to 'next' on 2018-10-12 at 1499dc98ba)
- + grep: add -r/--[no-]recursive
-
- Unlike "grep", "git grep" by default recurses to the whole tree.
- The command learned "git grep --recursive" option, so that "git
- grep --no-recursive" can serve as a synonym to setting the
- max-depth to 0.
-
- Will merge to 'master'.
-
-
-* rs/oidset-on-khash (2018-10-04) 5 commits
-  (merged to 'next' on 2018-10-12 at 8bb0152b3f)
- + oidset: uninline oidset_init()
- + oidset: use khash
- + khash: factor out kh_release_*
- + fetch-pack: load tip_oids eagerly iff needed
- + fetch-pack: factor out is_unmatched_ref()
-
- The oidset API was built on top of the oidmap API which in turn is
- on the hashmap API.  Replace the implementation to build on top of
- the khash API and gain performance.
-
- Will merge to 'master'.
-
-
 * rv/alias-help (2018-10-11) 3 commits
- - git-help.txt: document "git help cmd" vs "git cmd --help" for aliases
- - git.c: handle_alias: prepend alias info when first argument is -h
- - help: redirect to aliased commands for "git cmd --help"
+  (merged to 'next' on 2018-10-19 at f16bbfb3ef)
+ + git-help.txt: document "git help cmd" vs "git cmd --help" for aliases
+ + git.c: handle_alias: prepend alias info when first argument is -h
+ + help: redirect to aliased commands for "git cmd --help"
 
  "git cmd --help" when "cmd" is aliased used to only say "cmd is
  aliased to ...".  Now it shows that to the standard error stream
  and runs "git $cmd --help" where $cmd is the first word of the
- alias expansion.  This could be misleading for those who alias a
- command with options (e.g. with "[alias] cpn = cherry-pick -n",
- "git cpn --help" would show the manual of "cherry-pick", and the
- reader would not be told to pay close attention to the part that
- describes the "--no-commit" option until closing the pager that
- showed the contents of the manual, if the pager is configured to
- restore the original screen, or would not be told at all, if the
- pager simply makes the message on the standard error scroll away.
+ alias expansion.
 
- Will merge to 'next'.
+ This could be misleading for those who alias a command with options
+ (e.g. with "[alias] cpn = cherry-pick -n", "git cpn --help" would
+ show the manual of "cherry-pick", and the reader would not be told
+ to pay close attention to the part that describes the "--no-commit"
+ option until closing the pager that showed the contents of the
+ manual, if the pager is configured to restore the original screen,
+ or would not be told at all, if the pager simply makes the message
+ on the standard error scroll away.
+
+ Will merge to 'master'.
 
 
 * sb/strbuf-h-update (2018-09-29) 1 commit
@@ -684,15 +735,6 @@ of the repositories listed at
  Will merge to 'master'.
 
 
-* sm/show-superproject-while-conflicted (2018-09-28) 1 commit
-  (merged to 'next' on 2018-10-12 at 0334353131)
- + rev-parse: --show-superproject-working-tree should work during a merge
-
- A corner-case bugfix.
-
- Will merge to 'master'.
-
-
 * ag/sequencer-reduce-rewriting-todo (2018-10-09) 16 commits
  - rebase--interactive: move transform_todo_file() to rebase--interactive.c
  - sequencer: fix a call to error() in transform_todo_file()
@@ -753,7 +795,9 @@ of the repositories listed at
  More codepaths are moving away from hardcoded hash sizes.
 
 
-* ch/subtree-build (2018-10-16) 2 commits
+* ch/subtree-build (2018-10-18) 3 commits
+  (merged to 'next' on 2018-10-18 at f89fd5e6aa)
+ + Revert "subtree: make install targets depend on build targets"
   (merged to 'next' on 2018-10-16 at 919599cc37)
  + subtree: make install targets depend on build targets
   (merged to 'next' on 2018-10-12 at 4ed9ff6300)
@@ -764,17 +808,6 @@ of the repositories listed at
  Will merge to 'master'.
 
 
-* ds/commit-graph-leakfix (2018-10-07) 3 commits
-  (merged to 'next' on 2018-10-12 at 8cc7f2f1e9)
- + commit-graph: reduce initial oid allocation
- + builtin/commit-graph.c: UNLEAK variables
- + commit-graph: clean up leaked memory during write
-
- Code clean-up.
-
- Will merge to 'master'.
-
-
 * ds/test-multi-pack-index (2018-10-09) 3 commits
  - multi-pack-index: define GIT_TEST_MULTI_PACK_INDEX
  - midx: close multi-pack-index on repack
@@ -787,41 +820,13 @@ of the repositories listed at
 
 
 * js/fuzzer (2018-10-15) 2 commits
- - fuzz: add fuzz testing for packfile indices.
- - fuzz: add basic fuzz testing target.
+  (merged to 'next' on 2018-10-19 at 649a2bf1fb)
+ + fuzz: add fuzz testing for packfile indices.
+ + fuzz: add basic fuzz testing target.
 
  An experiment to fuzz test a few areas, hopefully we can gain more
  coverage to various areas.
 
- Will merge to 'next'.
-
-
-* jt/avoid-ls-refs (2018-10-07) 4 commits
-  (merged to 'next' on 2018-10-12 at 5775aabbc1)
- + fetch: do not list refs if fetching only hashes
- + transport: list refs before fetch if necessary
- + transport: do not list refs if possible
- + transport: allow skipping of ref listing
-
- Over some transports, fetching objects with an exact commit object
- name can be done without first seeing the ref advertisements.  The
- code has been optimized to exploit this.
-
- Will merge to 'master'.
-
-
-* jt/cache-tree-allow-missing-object-in-partial-clone (2018-10-10) 1 commit
-  (merged to 'next' on 2018-10-12 at 152ad8e336)
- + cache-tree: skip some blob checks in partial clone
-
- In a partial clone that will lazily be hydrated from the
- originating repository, we generally want to avoid "does this
- object exist (locally)?" on objects that we deliberately omitted
- when we created the clone.  The cache-tree codepath (which is used
- to write a tree object out of the index) however insisted that the
- object exists, even for paths that are outside of the partial
- checkout area.  The code has been updated to avoid such a check.
-
  Will merge to 'master'.
 
 
@@ -867,95 +872,9 @@ of the repositories listed at
  Unless somebody objects, that is.
 
 
-* tb/filter-alternate-refs (2018-10-09) 4 commits
-  (merged to 'next' on 2018-10-12 at 21c14722f1)
- + transport.c: introduce core.alternateRefsPrefixes
- + transport.c: introduce core.alternateRefsCommand
- + transport.c: extract 'fill_alternate_refs_command'
- + transport: drop refnames from for_each_alternate_ref
-
- When pushing into a repository that borrows its objects from an
- alternate object store, "git receive-pack" that responds to the
- push request on the other side lists the tips of refs in the
- alternate to reduce the amount of objects transferred.  This
- sometimes is detrimental when the number of refs in the alternate
- is absurdly large, in which case the bandwidth saved in potentially
- fewer objects transferred is wasted in excessively large ref
- advertisement.  The alternate refs that are advertised are now
- configurable with a pair of configuration variables.
-
- Will merge to 'master'.
-
-
-* nd/complete-fetch-multiple-args (2018-09-21) 1 commit
-  (merged to 'next' on 2018-10-10 at f78e14123c)
- + completion: support "git fetch --multiple"
-
- Teach bash completion that "git fetch --multiple" only takes remote
- names as arguments and no refspecs.
-
- Will merge to 'master'.
-
-
-* jt/fetch-tips-in-partial-clone (2018-09-21) 2 commits
-  (merged to 'next' on 2018-10-12 at 521b3fb44d)
- + fetch: in partial clone, check presence of targets
- + connected: document connectivity in partial clones
-
- "git fetch $repo $object" in a partial clone did not correctly
- fetch the asked-for object that is referenced by an object in
- promisor packfile, which has been fixed.
-
- Will merge to 'master'.
-
-
-* nd/status-refresh-progress (2018-09-17) 1 commit
-  (merged to 'next' on 2018-10-12 at 9240c05add)
- + status: show progress bar if refreshing the index takes too long
-
- "git status" learns to show progress bar when refreshing the index
- takes a long time.
-
- Will merge to 'master'.
-
-
-* nd/the-index (2018-09-21) 23 commits
-  (merged to 'next' on 2018-10-10 at 16e2e2e947)
- + revision.c: reduce implicit dependency the_repository
- + revision.c: remove implicit dependency on the_index
- + ws.c: remove implicit dependency on the_index
- + tree-diff.c: remove implicit dependency on the_index
- + submodule.c: remove implicit dependency on the_index
- + line-range.c: remove implicit dependency on the_index
- + userdiff.c: remove implicit dependency on the_index
- + rerere.c: remove implicit dependency on the_index
- + sha1-file.c: remove implicit dependency on the_index
- + patch-ids.c: remove implicit dependency on the_index
- + merge.c: remove implicit dependency on the_index
- + merge-blobs.c: remove implicit dependency on the_index
- + ll-merge.c: remove implicit dependency on the_index
- + diff-lib.c: remove implicit dependency on the_index
- + read-cache.c: remove implicit dependency on the_index
- + diff.c: remove implicit dependency on the_index
- + grep.c: remove implicit dependency on the_index
- + diff.c: remove the_index dependency in textconv() functions
- + blame.c: rename "repo" argument to "r"
- + combine-diff.c: remove implicit dependency on the_index
- + diff.c: reduce implicit dependency on the_index
- + read-cache.c: remove 'const' from index_has_changes()
- + archive.c: remove implicit dependency the_repository
- (this branch is used by sb/more-repo-in-api.)
-
- Various codepaths in the core-ish part learn to work on an
- arbitrary in-core index structure, not necessarily the default
- instance "the_index".
-
- Will merge to 'master'.
-
-
-* ds/reachable-topo-order (2018-09-21) 7 commits
- - revision.c: refactor basic topo-order logic
- - revision.h: add whitespace in flag definitions
+* ds/reachable-topo-order (2018-10-18) 7 commits
+ - t6012: make rev-list tests more interesting
+ - revision.c: generation-based topo-order algorithm
  - commit/revisions: bookkeeping before refactoring
  - revision.c: begin refactoring --topo-order logic
  - test-reach: add rev-list tests
@@ -965,24 +884,7 @@ of the repositories listed at
  The revision walker machinery learned to take advantage of the
  commit generation numbers stored in the commit-graph file.
 
- Expecting a reroll.
- cf. <1c0eb7d3-7f31-9377-d42f-4ac2f36ac26a@gmail.com>
-
-
-* bp/read-cache-parallel (2018-10-11) 7 commits
-  (merged to 'next' on 2018-10-12 at ed6edde799)
- + read-cache: load cache entries on worker threads
- + ieot: add Index Entry Offset Table (IEOT) extension
- + read-cache: load cache extensions on a worker thread
- + config: add new index.threads config setting
- + eoie: add End of Index Entry (EOIE) extension
- + read-cache: clean up casting and byte decoding
- + read-cache.c: optimize reading index format v4
-
- A new extension to the index file has been introduced, which allows
- the file to be read in parallel.
-
- Will merge to 'master'.
+ cf. <pull.25.v4.git.gitgitgadget@gmail.com>
 
 
 * ds/coverage-diff (2018-10-10) 1 commit
@@ -996,62 +898,35 @@ of the repositories listed at
  Will merge to 'master'.
 
 
-* sb/submodule-recursive-fetch-gets-the-tip (2018-10-11) 9 commits
- . builtin/fetch: check for submodule updates for non branch fetches
- . fetch: retry fetching submodules if needed objects were not fetched
- . submodule: fetch in submodules git directory instead of in worktree
- . repository: repo_submodule_init to take a submodule struct
- . submodule.c: do not copy around submodule list
- . submodule.c: move global changed_submodule_names into fetch submodule struct
- . submodule.c: sort changed_submodule_names before searching it
- . submodule.c: fix indentation
- . sha1-array: provide oid_array_filter
+* sb/submodule-recursive-fetch-gets-the-tip (2018-10-18) 11 commits
+ - fixup! repository: repo_submodule_init to take a submodule struct
+ - builtin/fetch: check for submodule updates for non branch fetches
+ - fetch: retry fetching submodules if needed objects were not fetched
+ - submodule: fetch in submodules git directory instead of in worktree
+ - repository: repo_submodule_init to take a submodule struct
+ - submodule.c: do not copy around submodule list
+ - submodule.c: move global changed_submodule_names into fetch submodule struct
+ - submodule.c: sort changed_submodule_names before searching it
+ - submodule.c: fix indentation
+ - sha1-array: provide oid_array_filter
+ - Merge branch 'ao/submodule-wo-gitmodules-checked-out' into sb/submodule-recursive-fetch-gets-the-tip
+ (this branch uses ao/submodule-wo-gitmodules-checked-out.)
 
  "git fetch --recurse-submodules" may not fetch the necessary commit
  that is bound to the superproject, which is getting corrected.
 
- Ejected for now, as it has fallouts in places like t/helper/.
-
-
-* bp/rename-test-env-var (2018-09-28) 6 commits
-  (merged to 'next' on 2018-10-12 at 201e451d20)
- + t0000: do not get self-test disrupted by environment warnings
- + preload-index: update GIT_FORCE_PRELOAD_TEST support
- + read-cache: update TEST_GIT_INDEX_VERSION support
- + fsmonitor: update GIT_TEST_FSMONITOR support
- + preload-index: use git_env_bool() not getenv() for customization
- + t/README: correct spelling of "uncommon"
-
- Some environment variables that control the runtime options of Git
- used during tests are getting renamed for consistency.
-
- Will merge to 'master'.
-
-
-* ss/wt-status-committable (2018-10-03) 5 commits
-  (merged to 'next' on 2018-10-10 at ea30d8819d)
- + roll wt_status_state into wt_status and populate in the collect phase
- + wt-status.c: set the committable flag in the collect phase
- + t7501: add test of "commit --dry-run --short"
- + wt-status: rename commitable to committable
- + wt-status.c: move has_unmerged earlier in the file
-
- Code clean-up in the internal machinery used by "git status" and
- "git commit --dry-run".
-
- Will merge to 'master'.
-
 
 * js/rebase-in-c-5.5-work-with-rebase-i-in-c (2018-10-11) 2 commits
- - builtin rebase: prepare for builtin rebase -i
- - Merge branch 'ag/rebase-i-in-c' into js/rebase-in-c-5.5-work-with-rebase-i-in-c
+  (merged to 'next' on 2018-10-19 at b734d81006)
+ + builtin rebase: prepare for builtin rebase -i
+ + Merge branch 'ag/rebase-i-in-c' into js/rebase-in-c-5.5-work-with-rebase-i-in-c
  (this branch is used by pk/rebase-in-c-6-final; uses ag/rebase-i-in-c, pk/rebase-in-c, pk/rebase-in-c-2-basic, pk/rebase-in-c-3-acts, pk/rebase-in-c-4-opts and pk/rebase-in-c-5-test; is tangled with ag/sequencer-reduce-rewriting-todo, jc/rebase-in-c-5-test-typofix and js/rebase-i-break.)
 
  "rebase" that has been rewritten learns the new calling convention
  used by "rebase -i" that was rewritten in C, tying the loose end
  between two GSoC topics that stomped on each other's toes.
 
- Will merge to 'next' together with pk/rebase-i-in-c-6-final.
+ Will merge to 'master' together with pk/rebase-i-in-c-6-final.
 
 
 * js/add-i-coalesce-after-editing-hunk (2018-08-28) 1 commit
@@ -1075,6 +950,7 @@ of the repositories listed at
  - t7411: merge tests 5 and 6
  - submodule: factor out a config_set_in_gitmodules_file_gently function
  - submodule: add a print_config_from_gitmodules() helper
+ (this branch is used by sb/submodule-recursive-fetch-gets-the-tip.)
 
  The submodule support has been updated to read from the blob at
  HEAD:.gitmodules when the .gitmodules file is missing from the
@@ -1084,7 +960,9 @@ of the repositories listed at
  cf. <20181010205645.e1529eff9099805029b1d6ef@ao2.it>
 
 
-* md/filter-trees (2018-10-15) 9 commits
+* md/filter-trees (2018-10-18) 10 commits
+  (merged to 'next' on 2018-10-18 at 55be2fded9)
+ + list-objects: support for skipping tree traversal
   (merged to 'next' on 2018-10-16 at 64d351d342)
  + filter-trees: code clean-up of tests
   (merged to 'next' on 2018-10-12 at c66e49d4ca)
@@ -1104,86 +982,91 @@ of the repositories listed at
 
 
 * pk/rebase-in-c-2-basic (2018-09-06) 11 commits
- - builtin rebase: support `git rebase <upstream> <switch-to>`
- - builtin rebase: only store fully-qualified refs in `options.head_name`
- - builtin rebase: start a new rebase only if none is in progress
- - builtin rebase: support --force-rebase
- - builtin rebase: try to fast forward when possible
- - builtin rebase: require a clean worktree
- - builtin rebase: support the `verbose` and `diffstat` options
- - builtin rebase: support --quiet
- - builtin rebase: handle the pre-rebase hook and --no-verify
- - builtin rebase: support `git rebase --onto A...B`
- - builtin rebase: support --onto
+  (merged to 'next' on 2018-10-19 at c2a0046e52)
+ + builtin rebase: support `git rebase <upstream> <switch-to>`
+ + builtin rebase: only store fully-qualified refs in `options.head_name`
+ + builtin rebase: start a new rebase only if none is in progress
+ + builtin rebase: support --force-rebase
+ + builtin rebase: try to fast forward when possible
+ + builtin rebase: require a clean worktree
+ + builtin rebase: support the `verbose` and `diffstat` options
+ + builtin rebase: support --quiet
+ + builtin rebase: handle the pre-rebase hook and --no-verify
+ + builtin rebase: support `git rebase --onto A...B`
+ + builtin rebase: support --onto
  (this branch is used by jc/rebase-in-c-5-test-typofix, js/rebase-in-c-5.5-work-with-rebase-i-in-c, pk/rebase-in-c-3-acts, pk/rebase-in-c-4-opts, pk/rebase-in-c-5-test and pk/rebase-in-c-6-final; uses pk/rebase-in-c.)
 
  Rewrite "git rebase" in C.
 
- Will merge to 'next' together with pk/rebase-i-in-c-6-final.
+ Will merge to 'master' together with pk/rebase-i-in-c-6-final.
 
 
 * pk/rebase-in-c-3-acts (2018-09-06) 7 commits
- - builtin rebase: stop if `git am` is in progress
- - builtin rebase: actions require a rebase in progress
- - builtin rebase: support --edit-todo and --show-current-patch
- - builtin rebase: support --quit
- - builtin rebase: support --abort
- - builtin rebase: support --skip
- - builtin rebase: support --continue
+  (merged to 'next' on 2018-10-19 at 9275677430)
+ + builtin rebase: stop if `git am` is in progress
+ + builtin rebase: actions require a rebase in progress
+ + builtin rebase: support --edit-todo and --show-current-patch
+ + builtin rebase: support --quit
+ + builtin rebase: support --abort
+ + builtin rebase: support --skip
+ + builtin rebase: support --continue
  (this branch is used by jc/rebase-in-c-5-test-typofix, js/rebase-in-c-5.5-work-with-rebase-i-in-c, pk/rebase-in-c-4-opts, pk/rebase-in-c-5-test and pk/rebase-in-c-6-final; uses pk/rebase-in-c and pk/rebase-in-c-2-basic.)
 
  Rewrite "git rebase" in C.
 
- Will merge to 'next' together with pk/rebase-i-in-c-6-final.
+ Will merge to 'master' together with pk/rebase-i-in-c-6-final.
 
 
 * pk/rebase-in-c-4-opts (2018-10-11) 18 commits
- - builtin rebase: support --root
- - builtin rebase: add support for custom merge strategies
- - builtin rebase: support `fork-point` option
- - merge-base --fork-point: extract libified function
- - builtin rebase: support --rebase-merges[=[no-]rebase-cousins]
- - builtin rebase: support `--allow-empty-message` option
- - builtin rebase: support `--exec`
- - builtin rebase: support `--autostash` option
- - builtin rebase: support `-C` and `--whitespace=<type>`
- - builtin rebase: support `--gpg-sign` option
- - builtin rebase: support `--autosquash`
- - builtin rebase: support `keep-empty` option
- - builtin rebase: support `ignore-date` option
- - builtin rebase: support `ignore-whitespace` option
- - builtin rebase: support --committer-date-is-author-date
- - builtin rebase: support --rerere-autoupdate
- - builtin rebase: support --signoff
- - builtin rebase: allow selecting the rebase "backend"
+  (merged to 'next' on 2018-10-19 at 2770b2f5d5)
+ + builtin rebase: support --root
+ + builtin rebase: add support for custom merge strategies
+ + builtin rebase: support `fork-point` option
+ + merge-base --fork-point: extract libified function
+ + builtin rebase: support --rebase-merges[=[no-]rebase-cousins]
+ + builtin rebase: support `--allow-empty-message` option
+ + builtin rebase: support `--exec`
+ + builtin rebase: support `--autostash` option
+ + builtin rebase: support `-C` and `--whitespace=<type>`
+ + builtin rebase: support `--gpg-sign` option
+ + builtin rebase: support `--autosquash`
+ + builtin rebase: support `keep-empty` option
+ + builtin rebase: support `ignore-date` option
+ + builtin rebase: support `ignore-whitespace` option
+ + builtin rebase: support --committer-date-is-author-date
+ + builtin rebase: support --rerere-autoupdate
+ + builtin rebase: support --signoff
+ + builtin rebase: allow selecting the rebase "backend"
  (this branch is used by jc/rebase-in-c-5-test-typofix, js/rebase-in-c-5.5-work-with-rebase-i-in-c, pk/rebase-in-c-5-test and pk/rebase-in-c-6-final; uses pk/rebase-in-c, pk/rebase-in-c-2-basic and pk/rebase-in-c-3-acts.)
 
  Rewrite "git rebase" in C.
 
- Will merge to 'next' together with pk/rebase-i-in-c-6-final.
+ Will merge to 'master' together with pk/rebase-i-in-c-6-final.
 
 
 * pk/rebase-in-c-5-test (2018-10-11) 6 commits
- - builtin rebase: error out on incompatible option/mode combinations
- - builtin rebase: use no-op editor when interactive is "implied"
- - builtin rebase: show progress when connected to a terminal
- - builtin rebase: fast-forward to onto if it is a proper descendant
- - builtin rebase: optionally pass custom reflogs to reset_head()
- - builtin rebase: optionally auto-detect the upstream
+  (merged to 'next' on 2018-10-19 at 0e48bc8243)
+ + builtin rebase: error out on incompatible option/mode combinations
+ + builtin rebase: use no-op editor when interactive is "implied"
+ + builtin rebase: show progress when connected to a terminal
+ + builtin rebase: fast-forward to onto if it is a proper descendant
+ + builtin rebase: optionally pass custom reflogs to reset_head()
+ + builtin rebase: optionally auto-detect the upstream
  (this branch is used by jc/rebase-in-c-5-test-typofix, js/rebase-in-c-5.5-work-with-rebase-i-in-c and pk/rebase-in-c-6-final; uses pk/rebase-in-c, pk/rebase-in-c-2-basic, pk/rebase-in-c-3-acts and pk/rebase-in-c-4-opts.)
 
  Rewrite "git rebase" in C.
 
- Will merge to 'next' together with pk/rebase-i-in-c-6-final.
+ Will merge to 'master' together with pk/rebase-i-in-c-6-final.
 
 
 * pk/rebase-in-c-6-final (2018-10-11) 1 commit
- - rebase: default to using the builtin rebase
+  (merged to 'next' on 2018-10-19 at 52f1dadf69)
+ + rebase: default to using the builtin rebase
  (this branch uses ag/rebase-i-in-c, js/rebase-in-c-5.5-work-with-rebase-i-in-c, pk/rebase-in-c, pk/rebase-in-c-2-basic, pk/rebase-in-c-3-acts, pk/rebase-in-c-4-opts and pk/rebase-in-c-5-test; is tangled with ag/sequencer-reduce-rewriting-todo, jc/rebase-in-c-5-test-typofix and js/rebase-i-break.)
 
  The final step of rewriting "rebase -i" in C.
 
- Will merge to 'next'.
+ Will merge to 'master'.
 
 
 * ps/stash-in-c (2018-10-15) 21 commits
@@ -1234,39 +1117,41 @@ of the repositories listed at
 
 
 * ag/rebase-i-in-c (2018-10-09) 20 commits
- - rebase -i: move rebase--helper modes to rebase--interactive
- - rebase -i: remove git-rebase--interactive.sh
- - rebase--interactive2: rewrite the submodes of interactive rebase in C
- - rebase -i: implement the main part of interactive rebase as a builtin
- - rebase -i: rewrite init_basic_state() in C
- - rebase -i: rewrite write_basic_state() in C
- - rebase -i: rewrite the rest of init_revisions_and_shortrevisions() in C
- - rebase -i: implement the logic to initialize $revisions in C
- - rebase -i: remove unused modes and functions
- - rebase -i: rewrite complete_action() in C
- - t3404: todo list with commented-out commands only aborts
- - sequencer: change the way skip_unnecessary_picks() returns its result
- - sequencer: refactor append_todo_help() to write its message to a buffer
- - rebase -i: rewrite checkout_onto() in C
- - rebase -i: rewrite setup_reflog_action() in C
- - sequencer: add a new function to silence a command, except if it fails
- - rebase -i: rewrite the edit-todo functionality in C
- - editor: add a function to launch the sequence editor
- - rebase -i: rewrite append_todo_help() in C
- - sequencer: make three functions and an enum from sequencer.c public
+  (merged to 'next' on 2018-10-19 at 1b24712d46)
+ + rebase -i: move rebase--helper modes to rebase--interactive
+ + rebase -i: remove git-rebase--interactive.sh
+ + rebase--interactive2: rewrite the submodes of interactive rebase in C
+ + rebase -i: implement the main part of interactive rebase as a builtin
+ + rebase -i: rewrite init_basic_state() in C
+ + rebase -i: rewrite write_basic_state() in C
+ + rebase -i: rewrite the rest of init_revisions_and_shortrevisions() in C
+ + rebase -i: implement the logic to initialize $revisions in C
+ + rebase -i: remove unused modes and functions
+ + rebase -i: rewrite complete_action() in C
+ + t3404: todo list with commented-out commands only aborts
+ + sequencer: change the way skip_unnecessary_picks() returns its result
+ + sequencer: refactor append_todo_help() to write its message to a buffer
+ + rebase -i: rewrite checkout_onto() in C
+ + rebase -i: rewrite setup_reflog_action() in C
+ + sequencer: add a new function to silence a command, except if it fails
+ + rebase -i: rewrite the edit-todo functionality in C
+ + editor: add a function to launch the sequence editor
+ + rebase -i: rewrite append_todo_help() in C
+ + sequencer: make three functions and an enum from sequencer.c public
  (this branch is used by ag/sequencer-reduce-rewriting-todo, js/rebase-i-break, js/rebase-in-c-5.5-work-with-rebase-i-in-c and pk/rebase-in-c-6-final.)
 
  Rewrite of the remaining "rebase -i" machinery in C.
 
- Will merge to 'next' together with pk/rebase-i-in-c-6-final.
+ Will merge to 'master' together with pk/rebase-i-in-c-6-final.
 
 
 * pk/rebase-in-c (2018-08-06) 3 commits
- - builtin/rebase: support running "git rebase <upstream>"
- - rebase: refactor common shell functions into their own file
- - rebase: start implementing it as a builtin
+  (merged to 'next' on 2018-10-19 at 26c29ace53)
+ + builtin/rebase: support running "git rebase <upstream>"
+ + rebase: refactor common shell functions into their own file
+ + rebase: start implementing it as a builtin
  (this branch is used by jc/rebase-in-c-5-test-typofix, js/rebase-in-c-5.5-work-with-rebase-i-in-c, pk/rebase-in-c-2-basic, pk/rebase-in-c-3-acts, pk/rebase-in-c-4-opts, pk/rebase-in-c-5-test and pk/rebase-in-c-6-final.)
 
  Rewrite of the "rebase" machinery in C.
 
- Will merge to 'next' together with pk/rebase-i-in-c-6-final.
+ Will merge to 'master' together with pk/rebase-i-in-c-6-final.