git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* What's cooking in git.git (Aug 2020, #02; Mon, 10)
@ 2020-08-10 19:44 Junio C Hamano
  2020-08-11  5:01 ` Eric Sunshine
                   ` (4 more replies)
  0 siblings, 5 replies; 18+ messages in thread
From: Junio C Hamano @ 2020-08-10 19:44 UTC (permalink / raw)
  To: git

Here are the topics that have been cooking.  Commits prefixed with '-' are
only in 'seen' (formerly 'pu'---proposed updates) while 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.

You can find the changes described here in the integration branches of the
repositories listed at

    http://git-blame.blogspot.com/p/git-public-repositories.html

--------------------------------------------------
[Graduated to 'master']

* en/eol-attrs-gotchas (2020-08-03) 4 commits
  (merged to 'next' on 2020-08-05 at 46e73f4c94)
 + checkout: support renormalization with checkout -m <paths>
 + merge: make merge.renormalize work for all uses of merge machinery
 + t6038: remove problematic test
 + t6038: make tests fail for the right reason

 All "mergy" operations that internally use the merge-recursive
 machinery should honor the merge.renormalize configuration, but
 many of them didn't.


* en/merge-recursive-comment-fixes (2020-08-02) 1 commit
  (merged to 'next' on 2020-08-04 at ec14b8ea94)
 + merge-recursive: fix unclear and outright wrong comments

 Comment fix.


* es/adjust-subtree-test-for-merge-msg-update (2020-08-03) 1 commit
  (merged to 'next' on 2020-08-04 at 634b1fcbac)
 + Revert "contrib: subtree: adjust test to change in fmt-merge-msg"

 Adjust tests in contrib/ to the recent change to fmt-merge-msg.


* es/worktree-cleanup (2020-07-31) 4 commits
  (merged to 'next' on 2020-08-04 at 798f642f66)
 + worktree: retire special-case normalization of main worktree path
 + worktree: drop bogus and unnecessary path munging
 + worktree: drop unused code from get_linked_worktree()
 + worktree: drop pointless strbuf_release()

 Code cleanup around "worktree" API implementation.


* jk/compiler-fixes-and-workarounds (2020-08-04) 3 commits
  (merged to 'next' on 2020-08-04 at a1caf8edbc)
 + revision: avoid leak when preparing bloom filter for "/"
 + revision: avoid out-of-bounds read/write on empty pathspec
 + config: work around gcc-10 -Wstringop-overflow warning

 Small fixes and workarounds.


* jk/strvec (2020-07-30) 11 commits
  (merged to 'next' on 2020-08-04 at 61addb841f)
 + strvec: rename struct fields
 + strvec: drop argv_array compatibility layer
 + strvec: update documention to avoid argv_array
 + strvec: fix indentation in renamed calls
 + strvec: convert remaining callers away from argv_array name
 + strvec: convert more callers away from argv_array name
 + strvec: convert builtin/ callers away from argv_array name
 + quote: rename sq_dequote_to_argv_array to mention strvec
 + strvec: rename files from argv-array to strvec
 + argv-array: rename to strvec
 + argv-array: use size_t for count and alloc
 (this branch is used by ds/maintenance and ds/maintenance-part-2.)

 The argv_array API is useful for not just managing argv but any
 "vector" (NULL-terminated array) of strings, and has seen adoption
 to a certain degree.  It has been renamed to "strvec" to reduce the
 barrier to adoption.


* jt/pack-objects-prefetch-in-batch (2020-07-21) 2 commits
  (merged to 'next' on 2020-08-03 at 29424e614d)
 + pack-objects: prefetch objects to be packed
 + pack-objects: refactor to oid_object_info_extended

 Originally merged to 'next' on 2020-08-01

 While packing many objects in a repository with a promissor remote,
 lazily fetching missing objects from the promissor remote one by
 one may be inefficient---the code now attempts to fetch all the
 missing objects in batch (obviously this won't work for a lazy
 clone that lazily fetches tree objects as you cannot even enumerate
 what blobs are missing until you learn which trees are missing).


* jt/pretend-object-never-come-from-elsewhere (2020-07-21) 1 commit
  (merged to 'next' on 2020-08-03 at 36cd23aae5)
 + sha1-file: make pretend_object_file() not prefetch

 Originally merged to 'next' on 2020-08-01

 The pretend-object mechanism checks if the given object already
 exists in the object store before deciding to keep the data
 in-core, but the check would have triggered lazy fetching of such
 an object from a promissor remote.


* ma/t1450-quotefix (2020-08-01) 1 commit
  (merged to 'next' on 2020-08-04 at 0e762e3553)
 + t1450: fix quoting of NUL byte when corrupting pack

 Test fix.


* mp/complete-show-color-moved (2020-07-15) 1 commit
  (merged to 'next' on 2020-08-03 at c90fea8e5e)
 + completion: add show --color-moved[-ws]

 Originally merged to 'next' on 2020-08-01

 Command line completion (in contrib/) update.
 A follow-up patch to reduce duplication may be warranted.


* ny/notes-doc-sample-update (2020-08-03) 1 commit
  (merged to 'next' on 2020-08-04 at a63dcb2c55)
 + docs: improve the example that illustrates git-notes path names

 Doc updates.


* pb/guide-docs (2020-08-04) 4 commits
  (merged to 'next' on 2020-08-05 at 031cab2bc2)
 + git.txt: add list of guides
 + Documentation: don't hardcode command categories twice
 + help: drop usage of 'common' and 'useful' for guides
 + command-list.txt: add missing 'gitcredentials' and 'gitremote-helpers'

 Update "git help guides" documentation organization.


* rs/bisect-oid-to-hex-fix (2020-08-02) 1 commit
  (merged to 'next' on 2020-08-04 at dc3c8ea699)
 + bisect: use oid_to_hex_r() instead of memcpy()+oid_to_hex()

 Code cleanup.


* so/rev-parser-errormessage-fix (2020-08-04) 1 commit
  (merged to 'next' on 2020-08-05 at dd9653da77)
 + revision: fix die() message for "--unpacked="

 Error message fix.

--------------------------------------------------
[New Topics]

* bc/sha-256-cvs-svn-updates (2020-08-05) 1 commit
  (merged to 'next' on 2020-08-07 at b1ce7e5ec5)
 + git-cvsexportcommit: support Perl before 5.10.1

 Portability fix.

 Will merge to 'master'.


* ds/maintenance-part-2 (2020-08-06) 9 commits
 - maintenance: add incremental-repack auto condition
 - maintenance: auto-size incremental-repack batch
 - maintenance: add incremental-repack task
 - midx: use start_delayed_progress()
 - midx: enable core.multiPackIndex by default
 - maintenance: create auto condition for loose-objects
 - maintenance: add loose-objects task
 - maintenance: add prefetch task
 - fetch: optionally allow disabling FETCH_HEAD update
 (this branch uses ds/maintenance.)


* jt/has_object (2020-08-06) 4 commits
  (merged to 'next' on 2020-08-07 at ed08abb693)
 + fsck: do not lazy fetch known non-promisor object
 + pack-objects: no fetch when allow-{any,promisor}
 + apply: do not lazy fetch when applying binary
 + sha1-file: introduce no-lazy-fetch has_object()

 A new helper function has_object() has been introduced to make it
 easier to mark object existence checks that do and don't want to
 trigger lazy fetches, and a few such checks are converted using it.

 Will merge to 'master'.


* ma/doc-sha-256-is-experimental (2020-08-06) 1 commit
 - Documentation: mark `--object-format=sha256` as experimental

 The recent addition of SHA-256 support is marked as experimental in
 the documentation.


* ma/test-quote-cleanup (2020-08-06) 2 commits
  (merged to 'next' on 2020-08-10 at 63a95c2926)
 + t4104: modernize and simplify quoting
 + t: don't spuriously close and reopen quotes

 Test cleanup.

 Will merge to 'master'.


* rp/apply-cached-with-i-t-a (2020-08-09) 3 commits
 - t4140: test apply with i-t-a paths
 - apply: make i-t-a entries never match worktree
 - apply: allow "new file" patches on i-t-a entries

 Recent versions of "git diff-files" shows a diff between the index
 and the working tree for "intent-to-add" paths as a "new file"
 patch; "git apply --cached" should be able to take "git diff-files"
 and should act as an equivalent to "git add" for the path, but the
 command failed to do so for such a path.

 Will merge to 'next'.


* rp/blame-first-parent-doc (2020-08-06) 1 commit
  (merged to 'next' on 2020-08-10 at 3fdbebe1ea)
 + blame-options.txt: document --first-parent option

 The "git blame --first-parent" option was not documented, but now
 it is.

 Will merge to 'master'.


* jc/noop-withstatic-inline (2020-08-06) 1 commit
 - compat-util: type-check parameters of no-op replacement functions

 A no-op replacement function implemented as a C preprocessor macro
 does not perform as good a job as one implemented as a "static
 inline" function in catching errors in parameters; replace the
 former with the latter in <git-compat-util.h> header.


* ps/ref-transaction-hook (2020-08-07) 1 commit
  (merged to 'next' on 2020-08-10 at d8ad7cc8f6)
 + refs: fix interleaving hook calls with reference-transaction hook

 The logic to find the ref transaction hook script attempted to
 cache the path to the found hook without realizing that it needed
 to keep a copied value, as the API it used returned a transitory
 buffer space.  This has been corrected.

 Will merge to 'master'.
 to be followed by a removal of the caching feature, which does not
 seem to help even as a negative cache.


* ss/submodule-summary-in-c (2020-08-06) 5 commits
 - submodule: port submodule subcommand 'summary' from shell to C
 - t7421: introduce a test script for verifying 'summary' output
 - submodule: rename helper functions to avoid ambiguity
 - submodule: remove extra line feeds between callback struct and macro
 - submodule: expose the '--for-status' option of summary

 Yet another subcommand of "git submodule" is getting rewritten in C.


* am/ci-wsfix (2020-08-10) 1 commit
 - ci: fix inconsistent indentation


* es/init-no-separate-git-dir-in-bare (2020-08-10) 1 commit
 - init: disallow --separate-git-dir with bare repository

 "git init --separate-git-dir" can be used in an existing repository
 with a working tree to move its .git/ directory away from the
 working tree.  Even though this re-init feature makes no sense in
 an existing bare repository, it was not erroring out.  Now it does.


* es/test-cmp-typocatcher (2020-08-09) 1 commit
 - test_cmp: diagnose incorrect arguments

 Test framework update.

 Will merge to 'next'.


* jk/sideband-error-l10n (2020-08-07) 1 commit
 - sideband: mark "remote error:" prefix for translation

 Mark error message for i18n.

 Will merge to 'next'.


* rp/ita-diff-modefix (2020-08-09) 1 commit
 - diff-lib: use worktree mode in diffs from i-t-a entries

 "git diff [<tree-ish>] $path" for a $path that is marked with i-t-a
 bit was not showing the mode bits from the working tree.

--------------------------------------------------
[Stalled]

* pw/rebase-i-more-options (2020-07-16) 5 commits
 - rebase: add --reset-author-date
 - rebase -i: support --ignore-date
 - sequencer: rename amend_author to author_to_free
 - rebase -i: support --committer-date-is-author-date
 - rebase -i: add --ignore-whitespace flag

 "git rebase -i" learns a bit more options.

 Waiting for a (hopefully final) review.


* mt/grep-sparse-checkout (2020-06-12) 6 commits
 - config: add setting to ignore sparsity patterns in some cmds
 - grep: honor sparse checkout patterns
 - config: correctly read worktree configs in submodules
 - t/helper/test-config: facilitate addition of new cli options
 - t/helper/test-config: return exit codes consistently
 - doc: grep: unify info on configuration variables

 "git grep" has been tweaked to be limited to the sparse checkout
 paths.

 Review needed on 4/6; otherwise looking sane.
 cf. <CABPp-BGdEyEeajYZj_rdxp=MyEQdszuyjVTax=hhYj3fOtRQUQ@mail.gmail.com>


* rs/more-buffered-io (2020-08-02) 3 commits
 - upload-pack: use buffered I/O to talk to rev-list
 - midx: use buffered I/O to talk to pack-objects
 - connected: use buffered I/O to talk to rev-list

 Expecting a reroll.


* ls/mergetool-meld-auto-merge (2020-07-12) 2 commits
 - SQUASH???
 - Support auto-merge for meld to follow the vim-diff behavior

 The 'meld' backend of the "git mergetool" learned to give the
 underlying 'meld' the '--auto-merge' option, which would help
 reduce the amount of text that requires manual merging.

 Expecting a reroll.


* jx/proc-receive-hook (2020-05-18) 11 commits
 . doc: add documentation for the proc-receive hook
 . transport: parse report options for tracking refs
 . t5411: test updates of remote-tracking branches
 . receive-pack: new config receive.procReceiveRefs
 . refs.c: refactor to reuse ref_is_hidden()
 . receive-pack: feed report options to post-receive
 . doc: add document for capability report-status-v2
 . New capability "report-status-v2" for git-push
 . receive-pack: add new proc-receive hook
 . t5411: add basic test cases for proc-receive hook
 . transport: not report a non-head push as a branch

 "git receive-pack" that accepts requests by "git push" learned to
 outsource most of the ref updates to the new "proc-receive" hook.

 Ejected out of 'seen'; somehow its tests seem to break with clang
 cf. https://travis-ci.org/github/git/git/builds/713443572


* mf/submodule-summary-with-correct-repository (2020-06-24) 2 commits
 - submodule: use submodule repository when preparing summary
 - revision: use repository from rev_info when parsing commits

 "git diff/show" on a change that involves a submodule used to read
 the information on commits in the submodule from a wrong repository
 and gave a wrong information when the commit-graph is involved.

 Needs tests.


* dr/push-remoteref-fix (2020-04-23) 1 commit
 - remote.c: fix handling of %(push:remoteref)

 The "%(push:remoteref)" placeholder in the "--format=" argument of
 "git format-patch" (and friends) only showed what got explicitly
 configured, not what ref at the receiving end would be updated when
 "git push" was used, as it ignored the default behaviour (e.g. update
 the same ref as the source).

 Expecting a reroll.
 cf. <20200416152145.wp2zeibxmuyas6y6@feanor>


* mr/bisect-in-c-2 (2020-07-17) 14 commits
 . SQUASH??? do not add new users of git_path_bisect_head()
 . bisect--helper: retire `--bisect-autostart` subcommand
 . bisect--helper: retire `--write-terms` subcommand
 . bisect--helper: retire `--check-expected-revs` subcommand
 . bisect--helper: reimplement `bisect_state` & `bisect_head` shell functions in C
 . bisect--helper: retire `--next-all` subcommand
 . bisect--helper: retire `--bisect-clean-state` subcommand
 . bisect--helper: finish porting `bisect_start()` to C
 . bisect--helper: reimplement `bisect_next` and `bisect_auto_next` shell functions in C
 . bisect: call 'clear_commit_marks_all()' in 'bisect_next_all()'
 . bisect--helper: reimplement `bisect_autostart` shell function in C
 . bisect--helper: introduce new `write_in_file()` function
 . bisect--helper: use '-res' in 'cmd_bisect__helper' return
 . bisect--helper: BUG() in cmd_*() on invalid subcommand

 Rewrite of the remainder of "git bisect" script in C continues.

 Needs more work.
 Ejected out of 'seen'; al/bisect-first-parent topic has a bit of
 textual conflict with this topic.


* mk/use-size-t-in-zlib (2018-10-15) 1 commit
 - zlib.c: use size_t for size

 The wrapper to call into zlib followed our long tradition to use
 "unsigned long" for sizes of regions in memory, which have been
 updated to use "size_t".

--------------------------------------------------
[Cooking]

* es/worktree-doc-cleanups (2020-08-03) 5 commits
  (merged to 'next' on 2020-08-04 at cbb53ca464)
 + git-worktree.txt: link to man pages when citing other Git commands
 + git-worktree.txt: make start of new sentence more obvious
 + git-worktree.txt: fix minor grammatical issues
 + git-worktree.txt: consistently use term "working tree"
 + git-worktree.txt: employ fixed-width typeface consistently

 Doc cleanup around "worktree".

 Will merge to 'master'.


* jk/log-fp-implies-m (2020-07-29) 7 commits
  (merged to 'next' on 2020-08-03 at 39fefa6b82)
 + doc/git-log: clarify handling of merge commit diffs
 + doc/git-log: move "-t" into diff-options list
 + doc/git-log: drop "-r" diff option
 + doc/git-log: move "Diff Formatting" from rev-list-options
 + log: enable "-m" automatically with "--first-parent"
 + revision: add "--no-diff-merges" option to counteract "-m"
 + log: drop "--cc implies -m" logic

 Originally merged to 'next' on 2020-08-01

 "git log --first-parent -p" showed patches only for single-parent
 commits on the first-parent chain; the "--first-parent" option has
 been made to imply "-m".  Use "--no-diff-merges" to restore the
 previous behaviour to omit patches for merge commits.

 On hold a bit.
 cf. <20200804200018.GB2014743@coredump.intra.peff.net>


* pd/mergetool-nvimdiff (2020-07-29) 2 commits
 - mergetools: add support for nvimdiff (neovim) family
 - mergetool--lib: improve support for vimdiff-style tool variants

 The existing backends for "git mergetool" based on variants of vim
 have been refactored and then support for "nvim" has been added.

 Will merge to 'next'.


* al/bisect-first-parent (2020-08-07) 5 commits
 - bisect: combine args passed to find_bisection()
 - bisect: introduce first-parent flag
 - cmd_bisect__helper: defer parsing no-checkout flag
 - rev-list: allow bisect and first-parent flags
 - t6030: modernize "git bisect run" tests

 "git bisect" learns the "--first-parent" option to find the first
 breakage along the first-parent chain.

 Will merge to 'next'.


* dd/send-email-config (2020-07-23) 1 commit
 - git-send-email: die if sendmail.* config is set

 Stop when "sendmail.*" configuration variables are defined, which
 could be a mistaken attempt to define "sendemail.*" variables.

 Will merge to 'next'.


* bc/sha-256-part-3 (2020-07-30) 39 commits
  (merged to 'next' on 2020-08-04 at 57115e548f)
 + t: remove test_oid_init in tests
 + docs: add documentation for extensions.objectFormat
 + ci: run tests with SHA-256
 + t: make SHA1 prerequisite depend on default hash
 + t: allow testing different hash algorithms via environment
 + t: add test_oid option to select hash algorithm
 + repository: enable SHA-256 support by default
 + setup: add support for reading extensions.objectformat
 + bundle: add new version for use with SHA-256
 + builtin/verify-pack: implement an --object-format option
 + http-fetch: set up git directory before parsing pack hashes
 + t0410: mark test with SHA1 prerequisite
 + t5308: make test work with SHA-256
 + t9700: make hash size independent
 + t9500: ensure that algorithm info is preserved in config
 + t9350: make hash size independent
 + t9301: make hash size independent
 + t9300: use $ZERO_OID instead of hard-coded object ID
 + t9300: abstract away SHA-1-specific constants
 + t8011: make hash size independent
 + t8003: make hash size independent
 + t8002: make hash size independent
 + t7508: use $ZERO_OID instead of hard-coded constant
 + t7506: avoid checking for SHA-1-specific constants
 + t7405: make hash size independent
 + t7400: make hash size independent
 + t7102: abstract away SHA-1-specific constants
 + t7201: abstract away SHA-1-specific constants
 + t7063: make hash size independent
 + t7003: compute appropriate length constant
 + t6501: avoid hard-coded objects
 + t6500: specify test values for SHA-256
 + t6301: make hash size independent
 + t6101: make hash size independent
 + t6100: make hash size independent
 + t3404: prepare 'short SHA-1 collision' tests for SHA-256
 + t3305: make hash agnostic
 + t1001: use $ZERO_OID
 + t: make test-bloom initialize repository

 The final leg of SHA-256 transition.

 Will merge to 'master'.


* hn/reftable-prep-part-2 (2020-07-27) 3 commits
 - Make HEAD a PSEUDOREF rather than PER_WORKTREE.
 - Modify pseudo refs through ref backend storage
 - t1400: use git rev-parse for testing PSEUDOREF existence

 Further preliminary change to refs API.

 Will merge to 'next'.


* ds/maintenance (2020-08-06) 11 commits
 - maintenance: add trace2 regions for task execution
 - maintenance: add auto condition for commit-graph task
 - maintenance: use pointers to check --auto
 - maintenance: create maintenance.<task>.enabled config
 - maintenance: take a lock on the objects directory
 - maintenance: add --task option
 - maintenance: add commit-graph task
 - maintenance: initialize task array
 - maintenance: replace run_auto_gc()
 - maintenance: add --quiet option
 - maintenance: create basic maintenance runner
 (this branch is used by ds/maintenance-part-2.)

 A "git gc"'s big brother has been introduced to take care of more
 repository maintenance tasks, not limited to the object database
 cleaning.


* tb/upload-pack-filters (2020-08-05) 4 commits
  (merged to 'next' on 2020-08-05 at 918e7092fe)
 + t5616: use test_i18ngrep for upload-pack errors
  (merged to 'next' on 2020-08-04 at 3ae57cc90c)
 + upload-pack.c: introduce 'uploadpackfilter.tree.maxDepth'
 + upload-pack.c: allow banning certain object filter(s)
 + list_objects_filter_options: introduce 'list_object_filter_config_name'

 The component to respond to "git fetch" request is made more
 configurable to selectively allow or reject object filtering
 specification used for partial cloning.

 Will merge to 'master'.
 cf. <20200804003722.GA2726931@coredump.intra.peff.net>


* mt/hash-to-hex-thread-safety (2020-06-26) 2 commits
 - hex: make hash_to_hex_algop() and friends thread-safe
 - compat/win32/pthread: add pthread_once()

 hash_to_hex() used a set of rotating static buffers, which was not
 safe to use in a threaded environment.  This has been made safer by
 using thread-local storage.

 Expecting a reroll.
 cf. <CAHd-oW6A2aBHg80R9kyifvF7thwzam5EYYoN9d2TaBcHJrcKWw@mail.gmail.com>


* ss/cmake-build (2020-06-26) 8 commits
  (merged to 'next' on 2020-08-03 at a0d70165c1)
 + ci: modification of main.yml to use cmake for vs-build job
 + cmake: support for building git on windows with msvc and clang.
 + cmake: support for building git on windows with mingw
 + cmake: support for testing git when building out of the source tree
 + cmake: support for testing git with ctest
 + cmake: installation support for git
 + cmake: generate the shell/perl/python scripts and templates, translations
 + Introduce CMake support for configuring Git

 Originally merged to 'next' on 2020-08-01

 CMake support to build with MSVC for Windows bypassing the Makefile.

 Will merge to 'master'.


* es/config-hooks (2020-07-30) 6 commits
 - hook: add 'run' subcommand
 - parse-options: parse into argv_array
 - hook: add --porcelain to list command
 - hook: add list command
 - hook: scaffolding for git-hook subcommand
 - doc: propose hooks managed by the config

 The "hooks defined in config" topic.

 Expecting a reroll.
 Now jk/strvec is in 'master', we may want to see the topic reworked
 on top of it.  Are there unresolved issues, or does the topic need
 a round of detailed review?
 cf. <xmqqmu3i9kvg.fsf@gitster.c.googlers.com>

--------------------------------------------------
[Discarded]

* jk/fast-export-anonym (2020-06-22) 4 commits
  (merged to 'next' on 2020-06-22 at b517b2f707)
 + fast-export: allow dumping the path mapping
 + fast-export: refactor path printing to not rely on stdout
 + fast-export: anonymize "master" refname
 + fast-export: allow dumping the refname mapping

 The way refnames are anonymized has been updated and a way to help
 debugging using the anonymized output hsa been added.

 Superseded by 'jk/fast-export-anonym-alt'.


* jk/t6000-timestamp-fix (2020-07-07) 1 commit
  (merged to 'next' on 2020-07-09 at 633bcd552f)
 + t6000: use test_tick consistently

 Test update.

 Now it is part of jk/tests-timestamp-fix with a larger scope.


* jc/no-update-fetch-head (2020-07-29) 1 commit
 . fetch: optionally allow disabling FETCH_HEAD update

 "git fetch" learned the "--[no-]write-fetch-head" option to
 optionally stop describing what was fetched in FETCH_HEAD.

 Now it is part of ds/maintenance topic.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-10 19:44 What's cooking in git.git (Aug 2020, #02; Mon, 10) Junio C Hamano
@ 2020-08-11  5:01 ` Eric Sunshine
  2020-08-11 19:24   ` Junio C Hamano
  2020-08-11  6:53 ` Jeff King
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 18+ messages in thread
From: Eric Sunshine @ 2020-08-11  5:01 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Git List

On Mon, Aug 10, 2020 at 3:45 PM Junio C Hamano <gitster@pobox.com> wrote:
> * es/init-no-separate-git-dir-in-bare (2020-08-10) 1 commit
> - init: disallow --separate-git-dir with bare repository
>
> "git init --separate-git-dir" can be used in an existing repository
> with a working tree to move its .git/ directory away from the
> working tree. Even though this re-init feature makes no sense in
> an existing bare repository, it was not erroring out. Now it does.

This description is a bit misleading since it focuses only on existing
repositories, however, --separate-git-dir is intended for use with
both new and existing repositories. So, perhaps the description could
be rewritten something like this:

    The purpose of "git init --separate-git-dir" is to initialize a
    new project with the repository separate from the working tree,
    or, in the case of an existing project, to move the repository
    (the .git/ directory) out of the working tree. It does not make
    sense to use --separate-git-dir with a bare repository for which
    there is no working tree, so disallow its use with bare
    repositories.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-10 19:44 What's cooking in git.git (Aug 2020, #02; Mon, 10) Junio C Hamano
  2020-08-11  5:01 ` Eric Sunshine
@ 2020-08-11  6:53 ` Jeff King
  2020-08-11  9:33   ` Patrick Steinhardt
  2020-08-11  9:59   ` brian m. carlson
  2020-08-11 10:10 ` Sergey Organov
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 18+ messages in thread
From: Jeff King @ 2020-08-11  6:53 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Patrick Steinhardt, brian m. carlson, git

On Mon, Aug 10, 2020 at 12:44:26PM -0700, Junio C Hamano wrote:

> * ps/ref-transaction-hook (2020-08-07) 1 commit
>   (merged to 'next' on 2020-08-10 at d8ad7cc8f6)
>  + refs: fix interleaving hook calls with reference-transaction hook
> 
>  The logic to find the ref transaction hook script attempted to
>  cache the path to the found hook without realizing that it needed
>  to keep a copied value, as the API it used returned a transitory
>  buffer space.  This has been corrected.
> 
>  Will merge to 'master'.
>  to be followed by a removal of the caching feature, which does not
>  seem to help even as a negative cache.

I noticed this had a CI problem. Fix is below.

-- >8 --
Subject: [PATCH] t1416: avoid hard-coded sha1 ids

The test added by e5256c82e5 (refs: fix interleaving hook calls with
reference-transaction hook, 2020-08-07) uses hard-coded sha1 object ids
in its expected output. This causes it to fail when run with
GIT_TEST_DEFAULT_HASH=sha256.

Let's make use of the oid variables we define earlier, as the rest of
the nearby tests do.

Signed-off-by: Jeff King <peff@peff.net>
---
 t/t1416-ref-transaction-hooks.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/t/t1416-ref-transaction-hooks.sh b/t/t1416-ref-transaction-hooks.sh
index d4d19194bf..f6e741c6c0 100755
--- a/t/t1416-ref-transaction-hooks.sh
+++ b/t/t1416-ref-transaction-hooks.sh
@@ -7,6 +7,7 @@ test_description='reference transaction hooks'
 test_expect_success setup '
 	mkdir -p .git/hooks &&
 	test_commit PRE &&
+	PRE_OID=$(git rev-parse PRE) &&
 	test_commit POST &&
 	POST_OID=$(git rev-parse POST)
 '
@@ -120,10 +121,10 @@ test_expect_success 'interleaving hook calls succeed' '
 	EOF
 
 	cat >expect <<-EOF &&
-		hooks/update refs/tags/PRE 0000000000000000000000000000000000000000 63ac8e7bcdb882293465435909f54a96de17d4f7
+		hooks/update refs/tags/PRE $ZERO_OID $PRE_OID
 		hooks/reference-transaction prepared
 		hooks/reference-transaction committed
-		hooks/update refs/tags/POST 0000000000000000000000000000000000000000 99d53161c3a0a903b6561b9f6c0c665b3a476401
+		hooks/update refs/tags/POST $ZERO_OID $POST_OID
 		hooks/reference-transaction prepared
 		hooks/reference-transaction committed
 	EOF
-- 
2.28.0.532.g36127779a4


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11  6:53 ` Jeff King
@ 2020-08-11  9:33   ` Patrick Steinhardt
  2020-08-11  9:59   ` brian m. carlson
  1 sibling, 0 replies; 18+ messages in thread
From: Patrick Steinhardt @ 2020-08-11  9:33 UTC (permalink / raw)
  To: Jeff King; +Cc: Junio C Hamano, brian m. carlson, git

[-- Attachment #1: Type: text/plain, Size: 2590 bytes --]

On Tue, Aug 11, 2020 at 02:53:47AM -0400, Jeff King wrote:
> On Mon, Aug 10, 2020 at 12:44:26PM -0700, Junio C Hamano wrote:
> 
> > * ps/ref-transaction-hook (2020-08-07) 1 commit
> >   (merged to 'next' on 2020-08-10 at d8ad7cc8f6)
> >  + refs: fix interleaving hook calls with reference-transaction hook
> > 
> >  The logic to find the ref transaction hook script attempted to
> >  cache the path to the found hook without realizing that it needed
> >  to keep a copied value, as the API it used returned a transitory
> >  buffer space.  This has been corrected.
> > 
> >  Will merge to 'master'.
> >  to be followed by a removal of the caching feature, which does not
> >  seem to help even as a negative cache.
> 
> I noticed this had a CI problem. Fix is below.
> 
> -- >8 --
> Subject: [PATCH] t1416: avoid hard-coded sha1 ids
> 
> The test added by e5256c82e5 (refs: fix interleaving hook calls with
> reference-transaction hook, 2020-08-07) uses hard-coded sha1 object ids
> in its expected output. This causes it to fail when run with
> GIT_TEST_DEFAULT_HASH=sha256.
> 
> Let's make use of the oid variables we define earlier, as the rest of
> the nearby tests do.
> 
> Signed-off-by: Jeff King <peff@peff.net>
> ---
>  t/t1416-ref-transaction-hooks.sh | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/t/t1416-ref-transaction-hooks.sh b/t/t1416-ref-transaction-hooks.sh
> index d4d19194bf..f6e741c6c0 100755
> --- a/t/t1416-ref-transaction-hooks.sh
> +++ b/t/t1416-ref-transaction-hooks.sh
> @@ -7,6 +7,7 @@ test_description='reference transaction hooks'
>  test_expect_success setup '
>  	mkdir -p .git/hooks &&
>  	test_commit PRE &&
> +	PRE_OID=$(git rev-parse PRE) &&
>  	test_commit POST &&
>  	POST_OID=$(git rev-parse POST)
>  '
> @@ -120,10 +121,10 @@ test_expect_success 'interleaving hook calls succeed' '
>  	EOF
>  
>  	cat >expect <<-EOF &&
> -		hooks/update refs/tags/PRE 0000000000000000000000000000000000000000 63ac8e7bcdb882293465435909f54a96de17d4f7
> +		hooks/update refs/tags/PRE $ZERO_OID $PRE_OID
>  		hooks/reference-transaction prepared
>  		hooks/reference-transaction committed
> -		hooks/update refs/tags/POST 0000000000000000000000000000000000000000 99d53161c3a0a903b6561b9f6c0c665b3a476401
> +		hooks/update refs/tags/POST $ZERO_OID $POST_OID
>  		hooks/reference-transaction prepared
>  		hooks/reference-transaction committed
>  	EOF
> -- 
> 2.28.0.532.g36127779a4

Reviewed-by: Patrick Steinhardt <ps@pks.im>

Thanks for cleaning up after me!

Patrick

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11  6:53 ` Jeff King
  2020-08-11  9:33   ` Patrick Steinhardt
@ 2020-08-11  9:59   ` brian m. carlson
  1 sibling, 0 replies; 18+ messages in thread
From: brian m. carlson @ 2020-08-11  9:59 UTC (permalink / raw)
  To: Jeff King; +Cc: Junio C Hamano, Patrick Steinhardt, git

[-- Attachment #1: Type: text/plain, Size: 1311 bytes --]

On 2020-08-11 at 06:53:47, Jeff King wrote:
> diff --git a/t/t1416-ref-transaction-hooks.sh b/t/t1416-ref-transaction-hooks.sh
> index d4d19194bf..f6e741c6c0 100755
> --- a/t/t1416-ref-transaction-hooks.sh
> +++ b/t/t1416-ref-transaction-hooks.sh
> @@ -7,6 +7,7 @@ test_description='reference transaction hooks'
>  test_expect_success setup '
>  	mkdir -p .git/hooks &&
>  	test_commit PRE &&
> +	PRE_OID=$(git rev-parse PRE) &&
>  	test_commit POST &&
>  	POST_OID=$(git rev-parse POST)
>  '
> @@ -120,10 +121,10 @@ test_expect_success 'interleaving hook calls succeed' '
>  	EOF
>  
>  	cat >expect <<-EOF &&
> -		hooks/update refs/tags/PRE 0000000000000000000000000000000000000000 63ac8e7bcdb882293465435909f54a96de17d4f7
> +		hooks/update refs/tags/PRE $ZERO_OID $PRE_OID
>  		hooks/reference-transaction prepared
>  		hooks/reference-transaction committed
> -		hooks/update refs/tags/POST 0000000000000000000000000000000000000000 99d53161c3a0a903b6561b9f6c0c665b3a476401
> +		hooks/update refs/tags/POST $ZERO_OID $POST_OID
>  		hooks/reference-transaction prepared
>  		hooks/reference-transaction committed
>  	EOF

Yeah, this looks reasonable.  I'm glad we've got CI working on the
SHA-256 code now to catch these kinds of things.
-- 
brian m. carlson: Houston, Texas, US

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-10 19:44 What's cooking in git.git (Aug 2020, #02; Mon, 10) Junio C Hamano
  2020-08-11  5:01 ` Eric Sunshine
  2020-08-11  6:53 ` Jeff King
@ 2020-08-11 10:10 ` Sergey Organov
  2020-08-11 19:23   ` Junio C Hamano
  2020-08-11 13:48 ` Taylor Blau
  2020-08-11 14:27 ` Matheus Tavares Bernardino
  4 siblings, 1 reply; 18+ messages in thread
From: Sergey Organov @ 2020-08-11 10:10 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Junio C Hamano <gitster@pobox.com> writes:

[...]

> * jk/log-fp-implies-m (2020-07-29) 7 commits
>   (merged to 'next' on 2020-08-03 at 39fefa6b82)
>  + doc/git-log: clarify handling of merge commit diffs
>  + doc/git-log: move "-t" into diff-options list
>  + doc/git-log: drop "-r" diff option
>  + doc/git-log: move "Diff Formatting" from rev-list-options
>  + log: enable "-m" automatically with "--first-parent"
>  + revision: add "--no-diff-merges" option to counteract "-m"
>  + log: drop "--cc implies -m" logic
>
>  Originally merged to 'next' on 2020-08-01
>
>  "git log --first-parent -p" showed patches only for single-parent
>  commits on the first-parent chain; the "--first-parent" option has
>  been made to imply "-m".  Use "--no-diff-merges" to restore the
>  previous behaviour to omit patches for merge commits.
>
>  On hold a bit.
>  cf. <20200804200018.GB2014743@coredump.intra.peff.net>

I believe I've submitted resolution for that.

<20200805220832.3800-1-sorganov@gmail.com>

Do you expect anything from me to push all this further?

Thanks,
-- Sergey

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-10 19:44 What's cooking in git.git (Aug 2020, #02; Mon, 10) Junio C Hamano
                   ` (2 preceding siblings ...)
  2020-08-11 10:10 ` Sergey Organov
@ 2020-08-11 13:48 ` Taylor Blau
  2020-08-11 14:27 ` Matheus Tavares Bernardino
  4 siblings, 0 replies; 18+ messages in thread
From: Taylor Blau @ 2020-08-11 13:48 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

On Mon, Aug 10, 2020 at 12:44:26PM -0700, Junio C Hamano wrote:
> Here are the topics that have been cooking.  Commits prefixed with '-' are
> only in 'seen' (formerly 'pu'---proposed updates) while 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.

I noticed that you picked up 'tb/bloom-improvements' in your fork, but
that it didn't make it into the list of cooking topics below. I suspect
that this is because of [1], where I got bitten by trying to sneak in an
extra 'bitmap_free()' at the last moment.

I have a fixup in [2] which needs to be squashed in at that point in the
series, along with dropping a '&' in the last patch to squelch a
compiler error introduced by the fixup.

Do you want me to resend the whole series, or would you rather apply the
fixups when queuing? Either is fine for me.

> * tb/upload-pack-filters (2020-08-05) 4 commits
>   (merged to 'next' on 2020-08-05 at 918e7092fe)
>  + t5616: use test_i18ngrep for upload-pack errors
>   (merged to 'next' on 2020-08-04 at 3ae57cc90c)
>  + upload-pack.c: introduce 'uploadpackfilter.tree.maxDepth'
>  + upload-pack.c: allow banning certain object filter(s)
>  + list_objects_filter_options: introduce 'list_object_filter_config_name'
>
>  The component to respond to "git fetch" request is made more
>  configurable to selectively allow or reject object filtering
>  specification used for partial cloning.
>
>  Will merge to 'master'.
>  cf. <20200804003722.GA2726931@coredump.intra.peff.net>

Thanks, I'm glad that this made it in.

Thanks,
Taylor

[1]: https://lore.kernel.org/git/xmqqbljoolhy.fsf@gitster.c.googlers.com/
[2]: https://lore.kernel.org/git/20200811134807.GA26715@syl.lan/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-10 19:44 What's cooking in git.git (Aug 2020, #02; Mon, 10) Junio C Hamano
                   ` (3 preceding siblings ...)
  2020-08-11 13:48 ` Taylor Blau
@ 2020-08-11 14:27 ` Matheus Tavares Bernardino
  2020-08-11 19:20   ` Junio C Hamano
  4 siblings, 1 reply; 18+ messages in thread
From: Matheus Tavares Bernardino @ 2020-08-11 14:27 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Hi, Junio

On Mon, Aug 10, 2020 at 4:44 PM Junio C Hamano <gitster@pobox.com> wrote:
>
> * mt/hash-to-hex-thread-safety (2020-06-26) 2 commits
>  - hex: make hash_to_hex_algop() and friends thread-safe
>  - compat/win32/pthread: add pthread_once()
>
>  hash_to_hex() used a set of rotating static buffers, which was not
>  safe to use in a threaded environment.  This has been made safer by
>  using thread-local storage.
>
>  Expecting a reroll.
>  cf. <CAHd-oW6A2aBHg80R9kyifvF7thwzam5EYYoN9d2TaBcHJrcKWw@mail.gmail.com>

I think we can drop this one. Dscho suggested using a different
approach for this conversion, with Coccinelle [1]. I won't be able to
look at it right now, but if someone wants to give it a try, [2] would
be a good starting point.

[1]: https://lore.kernel.org/git/nycvar.QRO.7.76.6.2007161214270.54@tvgsbejvaqbjf.bet/
[2]: https://lore.kernel.org/git/a35a9334-6db2-d8e3-8ce5-15f15a9005e1@web.de/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11 14:27 ` Matheus Tavares Bernardino
@ 2020-08-11 19:20   ` Junio C Hamano
  0 siblings, 0 replies; 18+ messages in thread
From: Junio C Hamano @ 2020-08-11 19:20 UTC (permalink / raw)
  To: Matheus Tavares Bernardino; +Cc: git

Matheus Tavares Bernardino <matheus.bernardino@usp.br> writes:

> Hi, Junio
>
> On Mon, Aug 10, 2020 at 4:44 PM Junio C Hamano <gitster@pobox.com> wrote:
>>
>> * mt/hash-to-hex-thread-safety (2020-06-26) 2 commits
>>  - hex: make hash_to_hex_algop() and friends thread-safe
>>  - compat/win32/pthread: add pthread_once()
>>
>>  hash_to_hex() used a set of rotating static buffers, which was not
>>  safe to use in a threaded environment.  This has been made safer by
>>  using thread-local storage.
>>
>>  Expecting a reroll.
>>  cf. <CAHd-oW6A2aBHg80R9kyifvF7thwzam5EYYoN9d2TaBcHJrcKWw@mail.gmail.com>
>
> I think we can drop this one.

OK.  Thanks.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11 10:10 ` Sergey Organov
@ 2020-08-11 19:23   ` Junio C Hamano
  2020-08-11 19:34     ` Sergey Organov
  0 siblings, 1 reply; 18+ messages in thread
From: Junio C Hamano @ 2020-08-11 19:23 UTC (permalink / raw)
  To: Sergey Organov; +Cc: git

Sergey Organov <sorganov@gmail.com> writes:

> Junio C Hamano <gitster@pobox.com> writes:
>
> [...]
>
>> * jk/log-fp-implies-m (2020-07-29) 7 commits
>>   (merged to 'next' on 2020-08-03 at 39fefa6b82)
>>  + doc/git-log: clarify handling of merge commit diffs
>>  + doc/git-log: move "-t" into diff-options list
>>  + doc/git-log: drop "-r" diff option
>>  + doc/git-log: move "Diff Formatting" from rev-list-options
>>  + log: enable "-m" automatically with "--first-parent"
>>  + revision: add "--no-diff-merges" option to counteract "-m"
>>  + log: drop "--cc implies -m" logic
>>
>>  Originally merged to 'next' on 2020-08-01
>>
>>  "git log --first-parent -p" showed patches only for single-parent
>>  commits on the first-parent chain; the "--first-parent" option has
>>  been made to imply "-m".  Use "--no-diff-merges" to restore the
>>  previous behaviour to omit patches for merge commits.
>>
>>  On hold a bit.
>>  cf. <20200804200018.GB2014743@coredump.intra.peff.net>
>
> I believe I've submitted resolution for that.
>
> <20200805220832.3800-1-sorganov@gmail.com>
>
> Do you expect anything from me to push all this further?

I was waiting for a reroll of the "resolution" with just one extra
test I mentioned in <xmqq3650n2rc.fsf@gitster.c.googlers.com> in the
thread.  With that everything would be good to go, I would think.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11  5:01 ` Eric Sunshine
@ 2020-08-11 19:24   ` Junio C Hamano
  0 siblings, 0 replies; 18+ messages in thread
From: Junio C Hamano @ 2020-08-11 19:24 UTC (permalink / raw)
  To: Eric Sunshine; +Cc: Git List

Eric Sunshine <sunshine@sunshineco.com> writes:

> On Mon, Aug 10, 2020 at 3:45 PM Junio C Hamano <gitster@pobox.com> wrote:
>> * es/init-no-separate-git-dir-in-bare (2020-08-10) 1 commit
>> - init: disallow --separate-git-dir with bare repository
>>
>> "git init --separate-git-dir" can be used in an existing repository
>> with a working tree to move its .git/ directory away from the
>> working tree. Even though this re-init feature makes no sense in
>> an existing bare repository, it was not erroring out. Now it does.
>
> This description is a bit misleading since it focuses only on existing
> repositories, however, --separate-git-dir is intended for use with
> both new and existing repositories. So, perhaps the description could
> be rewritten something like this:
>
>     The purpose of "git init --separate-git-dir" is to initialize a
>     new project with the repository separate from the working tree,
>     or, in the case of an existing project, to move the repository
>     (the .git/ directory) out of the working tree. It does not make
>     sense to use --separate-git-dir with a bare repository for which
>     there is no working tree, so disallow its use with bare
>     repositories.

Thanks.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11 19:23   ` Junio C Hamano
@ 2020-08-11 19:34     ` Sergey Organov
  2020-08-11 20:17       ` Sergey Organov
  2020-08-11 20:28       ` Junio C Hamano
  0 siblings, 2 replies; 18+ messages in thread
From: Sergey Organov @ 2020-08-11 19:34 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Junio C Hamano <gitster@pobox.com> writes:

> Sergey Organov <sorganov@gmail.com> writes:
>
>> Junio C Hamano <gitster@pobox.com> writes:
>>
>> [...]
>>
>>> * jk/log-fp-implies-m (2020-07-29) 7 commits
>>>   (merged to 'next' on 2020-08-03 at 39fefa6b82)
>>>  + doc/git-log: clarify handling of merge commit diffs
>>>  + doc/git-log: move "-t" into diff-options list
>>>  + doc/git-log: drop "-r" diff option
>>>  + doc/git-log: move "Diff Formatting" from rev-list-options
>>>  + log: enable "-m" automatically with "--first-parent"
>>>  + revision: add "--no-diff-merges" option to counteract "-m"
>>>  + log: drop "--cc implies -m" logic
>>>
>>>  Originally merged to 'next' on 2020-08-01
>>>
>>>  "git log --first-parent -p" showed patches only for single-parent
>>>  commits on the first-parent chain; the "--first-parent" option has
>>>  been made to imply "-m".  Use "--no-diff-merges" to restore the
>>>  previous behaviour to omit patches for merge commits.
>>>
>>>  On hold a bit.
>>>  cf. <20200804200018.GB2014743@coredump.intra.peff.net>
>>
>> I believe I've submitted resolution for that.
>>
>> <20200805220832.3800-1-sorganov@gmail.com>
>>
>> Do you expect anything from me to push all this further?
>
> I was waiting for a reroll of the "resolution" with just one extra
> test I mentioned in <xmqq3650n2rc.fsf@gitster.c.googlers.com> in the
> thread.  With that everything would be good to go, I would think.

And I asked you to postpone that in <875z9v7b0k.fsf@osv.gnss.ru> for
which I got no answer. I repeat it here for convenience:

"
For now, can we leave these patches as-is and then add additional tests
on top, please? I'm afraid that adding them now will force me to rewrite
current descriptions, as the result won't be minimal anymore, and I
feel uneasy about writing commit messages for these permuted tests
anyway.
"

Thanks,
-- Sergey

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11 19:34     ` Sergey Organov
@ 2020-08-11 20:17       ` Sergey Organov
  2020-08-11 21:36         ` Junio C Hamano
  2020-08-11 20:28       ` Junio C Hamano
  1 sibling, 1 reply; 18+ messages in thread
From: Sergey Organov @ 2020-08-11 20:17 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Sergey Organov <sorganov@gmail.com> writes:

> Junio C Hamano <gitster@pobox.com> writes:
>
>> Sergey Organov <sorganov@gmail.com> writes:
>>
>>> Junio C Hamano <gitster@pobox.com> writes:
>>>
>>> [...]
>>>
>>>> * jk/log-fp-implies-m (2020-07-29) 7 commits
>>>>   (merged to 'next' on 2020-08-03 at 39fefa6b82)
>>>>  + doc/git-log: clarify handling of merge commit diffs
>>>>  + doc/git-log: move "-t" into diff-options list
>>>>  + doc/git-log: drop "-r" diff option
>>>>  + doc/git-log: move "Diff Formatting" from rev-list-options
>>>>  + log: enable "-m" automatically with "--first-parent"
>>>>  + revision: add "--no-diff-merges" option to counteract "-m"
>>>>  + log: drop "--cc implies -m" logic
>>>>
>>>>  Originally merged to 'next' on 2020-08-01
>>>>
>>>>  "git log --first-parent -p" showed patches only for single-parent
>>>>  commits on the first-parent chain; the "--first-parent" option has
>>>>  been made to imply "-m".  Use "--no-diff-merges" to restore the
>>>>  previous behaviour to omit patches for merge commits.
>>>>
>>>>  On hold a bit.
>>>>  cf. <20200804200018.GB2014743@coredump.intra.peff.net>
>>>
>>> I believe I've submitted resolution for that.
>>>
>>> <20200805220832.3800-1-sorganov@gmail.com>
>>>
>>> Do you expect anything from me to push all this further?
>>
>> I was waiting for a reroll of the "resolution" with just one extra
>> test I mentioned in <xmqq3650n2rc.fsf@gitster.c.googlers.com> in the
>> thread.  With that everything would be good to go, I would think.

Here is the patch you've asked for, separately, as I honestly believe it
does not belong to the series in question themselves. This is on top of
the series.

-- >8 --
Subject: [PATCH] t/t4013: add permutation test for --diff-merges vs --first-parent

Signed-off-by: Sergey Organov <sorganov@gmail.com>
---
 t/t4013-diff-various.sh                       |  1 +
 ...--first-parent_--diff-merges=off_-p_master | 78 +++++++++++++++++++
 2 files changed, 79 insertions(+)
 create mode 100644 t/t4013/diff.log_--first-parent_--diff-merges=off_-p_master

diff --git a/t/t4013-diff-various.sh b/t/t4013-diff-various.sh
index 86fb11cecc61..7f7f1058cb86 100755
--- a/t/t4013-diff-various.sh
+++ b/t/t4013-diff-various.sh
@@ -299,6 +299,7 @@ log --root -c --patch-with-stat --summary master
 log --root --cc --patch-with-stat --summary master
 log --no-diff-merges -p --first-parent master
 log --diff-merges=off -p --first-parent master
+log --first-parent --diff-merges=off -p master
 log -p --first-parent master
 log -m -p --first-parent master
 log -m -p master
diff --git a/t/t4013/diff.log_--first-parent_--diff-merges=off_-p_master b/t/t4013/diff.log_--first-parent_--diff-merges=off_-p_master
new file mode 100644
index 000000000000..ad2e6d3be22c
--- /dev/null
+++ b/t/t4013/diff.log_--first-parent_--diff-merges=off_-p_master
@@ -0,0 +1,78 @@
+$ git log --first-parent --diff-merges=off -p master
+commit 80e25ffa65bcdbe82ef654b4d06dbbde7945c37f
+Merge: 9a6d494 c7a2ab9
+Author: A U Thor <author@example.com>
+Date:   Mon Jun 26 00:04:00 2006 +0000
+
+    Merge branch 'side' into master
+
+commit 9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0
+Author: A U Thor <author@example.com>
+Date:   Mon Jun 26 00:02:00 2006 +0000
+
+    Third
+
+diff --git a/dir/sub b/dir/sub
+index 8422d40..cead32e 100644
+--- a/dir/sub
++++ b/dir/sub
+@@ -2,3 +2,5 @@ A
+ B
+ C
+ D
++E
++F
+diff --git a/file1 b/file1
+new file mode 100644
+index 0000000..b1e6722
+--- /dev/null
++++ b/file1
+@@ -0,0 +1,3 @@
++A
++B
++C
+
+commit 1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44
+Author: A U Thor <author@example.com>
+Date:   Mon Jun 26 00:01:00 2006 +0000
+
+    Second
+    
+    This is the second commit.
+
+diff --git a/dir/sub b/dir/sub
+index 35d242b..8422d40 100644
+--- a/dir/sub
++++ b/dir/sub
+@@ -1,2 +1,4 @@
+ A
+ B
++C
++D
+diff --git a/file0 b/file0
+index 01e79c3..b414108 100644
+--- a/file0
++++ b/file0
+@@ -1,3 +1,6 @@
+ 1
+ 2
+ 3
++4
++5
++6
+diff --git a/file2 b/file2
+deleted file mode 100644
+index 01e79c3..0000000
+--- a/file2
++++ /dev/null
+@@ -1,3 +0,0 @@
+-1
+-2
+-3
+
+commit 444ac553ac7612cc88969031b02b3767fb8a353a
+Author: A U Thor <author@example.com>
+Date:   Mon Jun 26 00:00:00 2006 +0000
+
+    Initial
+$
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11 19:34     ` Sergey Organov
  2020-08-11 20:17       ` Sergey Organov
@ 2020-08-11 20:28       ` Junio C Hamano
  2020-08-11 21:26         ` Sergey Organov
  1 sibling, 1 reply; 18+ messages in thread
From: Junio C Hamano @ 2020-08-11 20:28 UTC (permalink / raw)
  To: Sergey Organov; +Cc: git

Sergey Organov <sorganov@gmail.com> writes:

> And I asked you to postpone that in <875z9v7b0k.fsf@osv.gnss.ru> for
> which I got no answer. I repeat it here for convenience:
>
> "
> For now, can we leave these patches as-is and then add additional tests
> on top, please? I'm afraid that adding them now will force me to rewrite
> current descriptions, as the result won't be minimal anymore, and I
> feel uneasy about writing commit messages for these permuted tests
> anyway.
> "

I was expecting just one case I mentioned in the first message and
nothing else, which is crucial to highlight how --first-parent's
"implication" works with explicit --diff-merges.

Full "permutated tests" was what you brought up in the discussion,
but I already said it was overkill to your response before you said
the above.  The "minimal" would be the posted patch plus a missing
"first-parent comes before --diff-merges=off" test filled in.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11 20:28       ` Junio C Hamano
@ 2020-08-11 21:26         ` Sergey Organov
  2020-08-11 22:12           ` Junio C Hamano
  0 siblings, 1 reply; 18+ messages in thread
From: Sergey Organov @ 2020-08-11 21:26 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Junio C Hamano <gitster@pobox.com> writes:

> Sergey Organov <sorganov@gmail.com> writes:
>
>> And I asked you to postpone that in <875z9v7b0k.fsf@osv.gnss.ru> for
>> which I got no answer. I repeat it here for convenience:
>>
>> "
>> For now, can we leave these patches as-is and then add additional tests
>> on top, please? I'm afraid that adding them now will force me to rewrite
>> current descriptions, as the result won't be minimal anymore, and I
>> feel uneasy about writing commit messages for these permuted tests
>> anyway.
>> "
>
> I was expecting just one case I mentioned in the first message and
> nothing else, which is crucial to highlight how --first-parent's
> "implication" works with explicit --diff-merges.
>
> Full "permutated tests" was what you brought up in the discussion,
> but I already said it was overkill to your response before you said
> the above.  The "minimal" would be the posted patch plus a missing
> "first-parent comes before --diff-merges=off" test filled in.

I've sent the patch before I saw this, please see
<87tux93pku.fsf@osv.gnss.ru>.

Is it OK with you?

Thanks,
-- Sergey

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11 20:17       ` Sergey Organov
@ 2020-08-11 21:36         ` Junio C Hamano
  2020-08-12  8:15           ` Sergey Organov
  0 siblings, 1 reply; 18+ messages in thread
From: Junio C Hamano @ 2020-08-11 21:36 UTC (permalink / raw)
  To: Sergey Organov; +Cc: git

Sergey Organov <sorganov@gmail.com> writes:

> Here is the patch you've asked for, separately, as I honestly believe it
> does not belong to the series in question themselves. This is on top of
> the series.

Well, the tip commit's title being "add test for --diff-merges=off",
testing it standalone as well as in different ways to combine with
another option that potentially interacts with it would make the
commit complete, I would think.

The sample output shows that the explicit --diff-merges=off told
"git log" not to show any patch for merge commits, which is what we
want to see, so it looks good.

Thanks.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11 21:26         ` Sergey Organov
@ 2020-08-11 22:12           ` Junio C Hamano
  0 siblings, 0 replies; 18+ messages in thread
From: Junio C Hamano @ 2020-08-11 22:12 UTC (permalink / raw)
  To: Sergey Organov; +Cc: git

Sergey Organov <sorganov@gmail.com> writes:

> I've sent the patch before I saw this, please see
> <87tux93pku.fsf@osv.gnss.ru>.

Thanks, looking good.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: What's cooking in git.git (Aug 2020, #02; Mon, 10)
  2020-08-11 21:36         ` Junio C Hamano
@ 2020-08-12  8:15           ` Sergey Organov
  0 siblings, 0 replies; 18+ messages in thread
From: Sergey Organov @ 2020-08-12  8:15 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Junio C Hamano <gitster@pobox.com> writes:

> Sergey Organov <sorganov@gmail.com> writes:
>
>> Here is the patch you've asked for, separately, as I honestly believe it
>> does not belong to the series in question themselves. This is on top of
>> the series.
>
> Well, the tip commit's title being "add test for --diff-merges=off",
> testing it standalone as well as in different ways to combine with
> another option that potentially interacts with it would make the
> commit complete, I would think.

My point is that this set of commits is essentially "make
--diff-merges=on a synonym for --no-diff-merges", so it should only
include the same test(s) that exist for --no-diff-merges.

If new tests are to be added, they should have been added before the
series, or after them, with their own reasoning, I think. Yeah, not a
big deal, just a bit of perfectionism here.

Thanks,
-- Sergey

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2020-08-12  8:16 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-10 19:44 What's cooking in git.git (Aug 2020, #02; Mon, 10) Junio C Hamano
2020-08-11  5:01 ` Eric Sunshine
2020-08-11 19:24   ` Junio C Hamano
2020-08-11  6:53 ` Jeff King
2020-08-11  9:33   ` Patrick Steinhardt
2020-08-11  9:59   ` brian m. carlson
2020-08-11 10:10 ` Sergey Organov
2020-08-11 19:23   ` Junio C Hamano
2020-08-11 19:34     ` Sergey Organov
2020-08-11 20:17       ` Sergey Organov
2020-08-11 21:36         ` Junio C Hamano
2020-08-12  8:15           ` Sergey Organov
2020-08-11 20:28       ` Junio C Hamano
2020-08-11 21:26         ` Sergey Organov
2020-08-11 22:12           ` Junio C Hamano
2020-08-11 13:48 ` Taylor Blau
2020-08-11 14:27 ` Matheus Tavares Bernardino
2020-08-11 19:20   ` Junio C Hamano

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).