git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2020-12-03 02:35:53 to 2020-12-04 20:50:26 UTC [more...]

[PATCH 00/20] fundamentals of merge-ort implementation
 2020-12-04 20:48 UTC  (22+ messages)
` [PATCH v2 "
  ` [PATCH v2 01/20] merge-ort: setup basic internal data structures
  ` [PATCH v2 02/20] merge-ort: add some high-level algorithm structure
  ` [PATCH v2 03/20] merge-ort: port merge_start() from merge-recursive
  ` [PATCH v2 04/20] merge-ort: use histogram diff
  ` [PATCH v2 05/20] merge-ort: add an err() function similar to one from merge-recursive
  ` [PATCH v2 06/20] merge-ort: implement a very basic collect_merge_info()
  ` [PATCH v2 07/20] merge-ort: avoid repeating fill_tree_descriptor() on the same tree
  ` [PATCH v2 08/20] merge-ort: compute a few more useful fields for collect_merge_info
  ` [PATCH v2 09/20] merge-ort: record stage and auxiliary info for every path
  ` [PATCH v2 10/20] merge-ort: avoid recursing into identical trees
  ` [PATCH v2 11/20] merge-ort: add a preliminary simple process_entries() implementation
  ` [PATCH v2 12/20] merge-ort: have process_entries operate in a defined order
  ` [PATCH v2 13/20] merge-ort: step 1 of tree writing -- record basenames, modes, and oids
  ` [PATCH v2 14/20] merge-ort: step 2 of tree writing -- function to create tree object
  ` [PATCH v2 15/20] merge-ort: step 3 of tree writing -- handling subdirectories as we go
  ` [PATCH v2 16/20] merge-ort: basic outline for merge_switch_to_result()
  ` [PATCH v2 17/20] merge-ort: add implementation of checkout()
  ` [PATCH v2 18/20] tree: enable cmp_cache_name_compare() to be used elsewhere
  ` [PATCH v2 19/20] merge-ort: add implementation of record_conflicted_index_entries()
  ` [PATCH v2 20/20] merge-ort: free data structures in merge_finalize()

[PATCH 0/9] misc commit-graph and oid-array cleanups
 2020-12-04 20:47 UTC  (22+ messages)
` [PATCH 1/9] oid-array.h: drop sha1 mention from header guard
` [PATCH 2/9] t0064: drop sha1 mention from filename
` [PATCH 3/9] t0064: make duplicate tests more robust
` [PATCH 4/9] cache.h: move hash/oid functions to hash.h
` [PATCH 5/9] oid-array: make sort function public
` [PATCH 6/9] oid-array: provide a for-loop iterator
` [PATCH 7/9] commit-graph: drop count_distinct_commits() function
` [PATCH 8/9] commit-graph: replace packed_oid_list with oid_array
` [PATCH 9/9] commit-graph: use size_t for array allocation and indexing

[PATCH 00/15] Refactor chunk-format into an API
 2020-12-04 20:17 UTC  (29+ messages)
` [PATCH 01/15] commit-graph: anonymize data in chunk_write_fn
` [PATCH 02/15] chunk-format: add API for writing table of contents
` [PATCH 03/15] midx: rename pack_info to write_midx_context
` [PATCH 04/15] midx: use context in write_midx_pack_names()
` [PATCH 05/15] midx: add entries to write_midx_context
` [PATCH 06/15] midx: add pack_perm "
` [PATCH 07/15] midx: add num_large_offsets "
` [PATCH 08/15] midx: convert chunk write methods to return int
` [PATCH 09/15] midx: drop chunk progress during write
` [PATCH 10/15] midx: use chunk-format API in write_midx_internal()
` [PATCH 11/15] midx: use 64-bit multiplication for chunk sizes
` [PATCH 12/15] chunk-format: create write_chunks()
` [PATCH 13/15] chunk-format: create chunk reading API
` [PATCH 14/15] commit-graph: restore duplicate chunk checks
` [PATCH 15/15] chunk-format: add technical docs

[PATCH] cmake: determine list of extra built-ins dynamically
 2020-12-04 20:10 UTC  (2+ messages)

diff-filter=R can't identify renaming if not done directly
 2020-12-04 20:07 UTC  (2+ messages)

diff-filter can't identify renaming if not done directly
 2020-12-04 20:07 UTC  (3+ messages)

[PATCH 0/2] Make t5526 independent of the default branch name
 2020-12-04 20:04 UTC  (4+ messages)
` [PATCH 1/2] t5526: avoid depending on a specific "
` [PATCH 2/2] t5526: drop the prereq expecting the default branch name `main`

[PATCH 00/26] git-log: implement new --diff-merge options
 2020-12-04 20:01 UTC  (47+ messages)
` [PATCH 10/26] diff-merges: new function diff_merges_suppress()
` [PATCH v1 00/27] git-log: implement new --diff-merge options
  ` [PATCH v1 01/27] revision: factor out parsing of diff-merge related options
  ` [PATCH v1 03/27] revision: factor out initialization of diff-merge related settings
  ` [PATCH v1 04/27] revision: provide implementation for diff merges tweaks
  ` [PATCH v1 05/27] revision: move diff merges functions to its own diff-merges.c
  ` [PATCH v1 06/27] diff-merges: rename all functions to have common prefix
  ` [PATCH v1 07/27] diff-merges: move checks for first_parent_only out of the module
  ` [PATCH v1 09/27] diff-merges: re-arrange functions to match the order they are called in
  ` [PATCH v1 24/27] doc/git-log: describe new --diff-merges options
  ` [PATCH v1 27/27] doc/git-show: include --diff-merges description

[PATCH] ci(vs-build): stop passing the iconv library location explicitly
 2020-12-04 20:02 UTC  (2+ messages)

Unexpected behavior with branch.*.{remote,pushremote,merge}
 2020-12-04 19:57 UTC  (6+ messages)

[RFC 1/2] pull: warn that pulling will not merge by default in Git 3.0
 2020-12-04 19:37 UTC  (11+ messages)
` [RFC 2/2] pull: default pull.ff to "only" when pull.rebase is not set either

[PATCH 0/7] merge-ort: some groundwork for further implementation
 2020-12-04 18:40 UTC  (13+ messages)
` [PATCH 1/7] merge-ort: add a few includes
` [PATCH 2/7] merge-ort: add a clear_internal_opts helper
` [PATCH 3/7] merge-ort: add a path_conflict field to merge_options_internal
` [PATCH 4/7] merge-ort: add a paths_to_free "
` [PATCH 5/7] merge-ort: add function grouping comments
` [PATCH 6/7] merge-ort: add die-not-implemented stub handle_content_merge() function
` [PATCH 7/7] merge-ort: add modify/delete handling and delayed output processing

BUG in fetching non-checked out submodule
 2020-12-04 18:06 UTC  (16+ messages)
          ` [PATCH] submodules: fix of regression on fetching of non-init subsub-repo

[PATCH] refs: Always pass old object name to reftx hook
 2020-12-04  8:37 UTC  (2+ messages)

[PATCH v2 00/14] pull: default warning improvements
 2020-12-04  6:16 UTC  (15+ messages)
` [PATCH v2 01/14] doc: pull: explain what is a fast-forward
` [PATCH v2 02/14] pull: improve default warning
` [PATCH v2 03/14] pull: refactor fast-forward check
` [PATCH v2 04/14] pull: cleanup autostash check
` [PATCH v2 05/14] pull: trivial cleanup
` [PATCH v2 06/14] pull: move default warning
` [PATCH v2 07/14] pull: display default warning only when non-ff
` [PATCH v2 08/14] pull: trivial whitespace style fix
` [PATCH v2 09/14] pull: introduce --merge option
` [PATCH v2 10/14] pull: add proper error with --ff-only
` [PATCH v2 11/14] tentative: pull: change the semantics of --ff-only
` [PATCH v2 12/14] pull: show warning with --ff
` [PATCH v2 13/14] test: merge-pull-config: trivial cleanup
` [PATCH v2 14/14] test: pull-options: revert unnecessary changes

[PATCH 00/14] pull: default warning improvements
 2020-12-04  6:14 UTC  (2+ messages)

[Outreachy] Internship blog 2020
 2020-12-04  3:33 UTC  (4+ messages)
  ` [Wireshark-dev] "

Bug: git log -L manpage claims regexes are supported, but they are not
 2020-12-04  2:56 UTC  (3+ messages)

[PATCH] init-db: init the_repository->hash_algo early from GIT_DEFAULT_HASH
 2020-12-03 23:25 UTC  (4+ messages)

[PATCH 0/2] upload-pack.c: fix partial clone allowed filter regression
 2020-12-03 18:55 UTC  (3+ messages)
` [PATCH 1/2] builtin/clone.c: don't ignore transport_fetch_refs() errors
` [PATCH 2/2] upload-pack.c: don't free allowed_filters util pointers

[PATCH] style: indent multiline "if" conditions by 4 spaces
 2020-12-03 18:51 UTC  (5+ messages)

[RFC/PATCH 00/12] make "mktag" use fsck_tag()
 2020-12-03 16:38 UTC  (6+ messages)
` [PATCH v2 00/10] "

[PATCH 0/5] handling 4GB .idx files
 2020-12-03 15:23 UTC  (9+ messages)
        ` t7900's new expensive test
            ` [PATCH] t7900: speed up "

[PATCH] glossary: improve "branch" definition
 2020-12-03 13:51 UTC  (7+ messages)

[PATCH 0/6] Minimal patches to let reftable pass the CI builds
 2020-12-03 13:56 UTC  (7+ messages)
` [PATCH 1/6] fixup! reftable: rest of library
      ` Reftable locking on Windows (Re: [PATCH 1/6] fixup! reftable: rest of library)

[PATCH] Makefile: mark git-maintenance as a builtin
 2020-12-03 13:51 UTC  (3+ messages)

Report a potential bug in merge
 2020-12-03  8:34 UTC 

[PATCH] doc: make HTML manual reproducible
 2020-12-03  8:07 UTC  (8+ messages)
          ` Re* "

[PATCH] upload-pack: propagate return value from object filter config callback
 2020-12-03  8:09 UTC 

[Outreachy] Blog Post Submission
 2020-12-03  6:29 UTC 


Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).