git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Johannes Schindelin <Johannes.Schindelin@gmx.de>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org, Emily Shaffer <emilyshaffer@google.com>,
	Felipe Contreras <felipe.contreras@gmail.com>
Subject: Re: fc/pull-merge-rebase, was Re: What's cooking in git.git (Dec 2020, #01; Tue, 8)
Date: Thu, 10 Dec 2020 05:40:09 +0100 (CET)	[thread overview]
Message-ID: <nycvar.QRO.7.76.6.2012100507450.25979@tvgsbejvaqbjf.bet> (raw)
In-Reply-To: <xmqqk0tq1xf3.fsf@gitster.c.googlers.com>

Hi Junio,

On Wed, 9 Dec 2020, Junio C Hamano wrote:

> Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
>
> > On Tue, 8 Dec 2020, Junio C Hamano wrote:
> >
> >> * fc/pull-merge-rebase (2020-12-08) 19 commits
> >>  - future: pull: enable ff-only mode by default
> >>  - pull: advice of future changes
> >>  - pull: add pull.mode=ff-only
> >>  - pull: add pull.mode
> >>  - pull: trivial memory fix
> >>  - test: pull-options: revert unnecessary changes
> >>  - test: merge-pull-config: trivial cleanup
> >>  - pull: move configurations fetches
> >>  - rebase: add REBASE_DEFAULT
> >>  - pull: show warning with --ff
> >>  - pull: introduce --merge option
> >>  - pull: trivial whitespace style fix
> >>  - pull: display default warning only when non-ff
> >>  - pull: move default warning
> >>  - pull: trivial cleanup
> >>  - pull: cleanup autostash check
> >>  - pull: refactor fast-forward check
> >>  - pull: improve default warning
> >>  - doc: pull: explain what is a fast-forward
> >>
> >>  When a user does not tell "git pull" to use rebase or merge, the
> >>  command gives a loud message telling a user to choose between
> >>  rebase or merge but creates a merge anyway, forcing users who would
> >>  want to rebase to redo the operation.  Fix this by (1) tightening
> >>  the condition to give the message---there is no reason to stop or
> >>  force the user to choose between rebase or merge if the history
> >>  fast-forwards, and (2) failing the operation when the history does
> >>  not fast-forward, instead of making a merge, in such a case.
> >
> > Despite what the commit message of the tip commit says, it is not "time to
> > flip the switch and make ff-only the default" because it breaks our very
> > own test suite left and right. See for yourself:
>
> With respect to what is in 'seen' that are not marked as "Will merge
> to...", I am merely a messenger, and you are shooting one ;-).

Yes, I guess my complaint was not actually directed to _you_.

> I know of these breakages, becuase I've seen them before pushing the
> integration results out.  The first-parent history near the tip of
> 'seen' looks like so:
>
>     4a386f47a7 Merge branch 'fc/pull-merge-rebase' into seen
>     e0b9615ea3 Merge branch 'es/config-hooks' into seen
>     addabb0fb7 ### start breaking 5411,5520,4013,5524,6402,5604,...
>     0ffeed16ab Merge branch 'sj/untracked-files-in-submodule-dir...
>
> Notice the ### separator?  Everything above the line breaks 'seen'.
> (Emily cc'ed---even though her config-hooks is not on topic of your
> message, it is above the separator as the result of merging it to
> 'seen' breaks 5411).

I had not actually noticed that separator because I had worked off of the
topic branch itself, and it does not pass the test suite.

> The reason why I am experimenting with this is because I suspect
> that those who are involved in the topics above the separator would
> want them in 'seen', as it would be easier to work with, when the
> breakage may be coming from interactions with other topics, to
> pinpoint what interaction may be at fault.
>
> But if you and others who are not involved in these topics above the
> separator want to see 'seen' in a buildable/testable state by
> excluding them, I am fine with that, too.  It is a hassle for me to
> maintain the two parts of 'seen' the way I pushed out last night.  I
> have to identify which merge of the topics into 'seen' breaks
> builds/tests, shuffle the order of topics, minimizing the number of
> topics above the breakage point, and tentatively rewind 'seen' to
> below the breakage point when building and installing for my own
> use, etc.  It would become unnecessary if I can just discard new
> topics after seeing builds/tests break in 'seen'.

It is up to you what you integrate into `seen`. From a purely procedural
point of view, if it was up to me, I would liberally drop any patch series
that does not pass our CI build. In my mind, patches must be correct
enough to pass that check before they are ready for review.

Please note that I am making a big difference between patches that work on
their own (but break the test suite when being merged into `seen`) and
patches that break the test suite "without any outside help".

I am happy to assist in fixing problems with the first category (those
that only break when merged with other topics). It's what I do already in
Git for Windows' `shears/*` branches where Git for Windows' `main` branch
is continuously rebased onto the four integration branches of git.git. The
idea is to catch conflicts between topics that are in-flight.

At the same time, I would rather like to avoid having to fix the CI build
for topics that are already broken without even being integrated into
`seen`. I did that in the past so that I could benefit from seeing
conflicts between Git for Windows' topics and upcoming changes in Git, but
I plan on leaving things in a broken state when I see broken topics (i.e.
the second category I mentioned above).

> > Given that not even our very own test suite is well-suited to this change,
> > I rather doubt that this is a safe thing to do.
> >
> > In the _least_, the patch series should put in the effort to show just how
> > much work it is to adjust the test suite to let it pass again. This would
> > also give an indication how much work we impose on our users by that
> > ff-only change in behavior.
>
> I do not doubt the need to make sure that the test suite covers the
> new use case as well as the need to adjust the existing tests.
>
> Having said that, I have a strong suspicion that the "turn the
> current warn-but-go-ahead-to-merge into error-out-and-stop for those
> who haven't chosen between rebase and merge when we see a non-ff
> situation" this topic aims for *can* be made without causing as much
> harm to existing users' workflows as these test failures imply.  The
> reason why I say so is because the existing behaviour of loudly
> warning is so annoying, even with the current behaviour of making a
> merge after showing the warning, existing users would have made and
> recorded the choice in pull.rebase long time ago already.  Those who
> want to rebase by default would have had more incentive to avoid
> the "warn but still go ahead to merge" doing a wrong thing to them,
> but those who want to merge by default would also have set it, if
> only to squelch the annoying loud warning.
>
> A spot check: do you have pull.rebase set to anything in your
> config?

I do, as a matter of fact.

As do Git for Windows users as of version v2.27.1 or so, because Git for
Windows' installer now asks specifically about the desired behavior and
configures it explicitly.

> So, if this "default change" is done in such a way so that it won't
> make any difference to those who have pull.rebase set to either yes
> or no, I suspect that the fallout would not be as bad as what these
> test failures imply.

That assumes that all setups call `git pull` interactively.

In my case, I have tons of automation (how would I be able to maintain Git
for Windows otherwise?) and I recently stumbled over a `pull.rebase`
advice in one of those pipelines.

Since the advice was non-fatal, I did not fix it (and would not have seen
the advice at all, if it hadn't been for an unrelated problem I had to
track down).

> On the other hand, if the implementation in the topic forces
> everybody (including those who have made the choice by setting
> pull.rebase) to set another variable before allowing to work with a
> non-ff pull, it would break everybody and is a disaster.

Well, here's my vote for keeping the current behavior to continue to merge
and show that advice about pull.rebase. I find it the least annoying
option of all that are available to us.

Ciao,
Dscho

  parent reply	other threads:[~2020-12-10 15:00 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-09  1:31 What's cooking in git.git (Dec 2020, #01; Tue, 8) Junio C Hamano
2020-12-09  1:41 ` Taylor Blau
2020-12-10  2:02   ` Jonathan Tan
2020-12-09  2:45 ` Elijah Newren
2020-12-09  4:22   ` Junio C Hamano
2020-12-09 23:02     ` Taylor Blau
2020-12-10  0:57       ` Junio C Hamano
2020-12-10  2:57   ` Jonathan Tan
2020-12-09 14:09 ` fc/pull-merge-rebase, was " Johannes Schindelin
2020-12-09 21:28   ` Junio C Hamano
2020-12-10  0:31     ` Felipe Contreras
2020-12-10  4:40     ` Johannes Schindelin [this message]
2020-12-10  4:46       ` Johannes Schindelin
2020-12-10 15:11         ` Felipe Contreras
2020-12-10 15:27     ` Theodore Y. Ts'o
2020-12-10 18:28       ` Junio C Hamano
2020-12-11  1:33         ` Felipe Contreras
2020-12-11  7:17           ` Junio C Hamano
2020-12-11 14:10             ` Felipe Contreras
2020-12-11 22:09             ` Theodore Y. Ts'o
2020-12-12  0:43               ` Felipe Contreras
2020-12-10  0:27   ` Felipe Contreras
2020-12-11  5:59     ` Junio C Hamano
2020-12-09 14:11 ` js/init-defaultbranch-advice, " Johannes Schindelin
2020-12-09 21:57   ` Junio C Hamano
2020-12-10  4:54     ` Johannes Schindelin
2020-12-10 18:33       ` Junio C Hamano
2020-12-11  0:03         ` Felipe Contreras
2020-12-10  3:56 ` bc/rev-parse-path-format, " Johannes Schindelin
2020-12-10 18:34   ` Junio C Hamano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=nycvar.QRO.7.76.6.2012100507450.25979@tvgsbejvaqbjf.bet \
    --to=johannes.schindelin@gmx.de \
    --cc=emilyshaffer@google.com \
    --cc=felipe.contreras@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).