From: Jeff King <peff@peff.net>
To: Dan Aloni <alonid@gmail.com>
Cc: Eric Sunshine <sunshine@sunshineco.com>, Git List <git@vger.kernel.org>
Subject: Re: [PATCH v3] Add user.explicit boolean for when ident shouldn't be guessed
Date: Thu, 4 Feb 2016 00:50:35 -0500 [thread overview]
Message-ID: <20160204055035.GA13537@sigill.intra.peff.net> (raw)
In-Reply-To: <20160204053646.GA24453@gmail.com>
On Thu, Feb 04, 2016 at 07:36:46AM +0200, Dan Aloni wrote:
> > In a sense, that encourages a nice workflow for your intended feature.
> > You have to do:
> >
> > git clone -c user.name=... -c user.email=... clone ...
> >
> > to set up your ident in the newly-cloned repository, or else clone will
> > yell at you. But it's a little unfriendly. If you are just cloning to
> > view and not make commits, you don't need your ident set up. And worse,
> > if you forget to add your "-c" ident, clone will go through the trouble
> > to copy all of the objects, and only then complain about your ident.
>
> I think that forcing to give the configuration in 'git clone' could be
> problematic for automated tools (e.g. o build) that invoke 'git clone'
> just for building purposes (i.e. read-only) to a tool-managed directory.
> And what about sub-modules clones? It would be hard to distinguish manual
> clones and automatic clones anyway.
Yeah. I sort of assumed that people with automated tools _wouldn't_ set
user.explicit. But even with that assumption, I think it's too
unfriendly to continue.
> > So I'd argue that this should only kick in for the strict case. Which
> > means the check _has_ to go into fmt_ident, and we have to somehow
> > inform fmt_ident of the four cases:
> [...]
>
> Looks like an enum type would be better here instead of a set of booleans.
Yeah, if we can actually split the state space into the 4 cases, I agree
an enum would be easier to follow. I'm not 100% sure that my cases map
completely to what the code does now, though.
> > I also wonder if we could simply expose the 4 levels of above in a
> > variable, and default it to type-3. That would let people loosen or
> > tighten as they see fit. But it would be a more complicated patch, so if
> > nobody really cares about it beyond this use case, it may be overkill.
>
> I get the impression from this and your later E-Mails that there are
> much more cases to cover when testing this feature (and I would not
> like to break stuff implementing this, obviously).
>
> The code should be cleaned up anyway. I only delved into that code for
> the first time two days ago, so it would take me more time to come up
> with a new one (though reading your overview here of the cases is going
> to be helpful, thanks).
Feel free to look into this direction, but having pushed a little
further towards the "simple" approach (with the 2 patches I just sent),
I think that does what you want without too much complication. I'd be
fine, too, if you wanted to pick those up[1] and put the finishing
touches on the second one.
-Peff
[1] To clarify, since you are new to the git.git workflow: I'd expect
you to use `git am` to pick up my two patches. Leave me as the
author of the first cleanup patch. Squash your additions onto the
second one using `cherry-pick`, `commit --amend`, or whatever, and
make sure to `commit --reset-author` so that you're the author. Post
both as part of the v4 re-roll.
But that's just "here is what I meant", not "what you have to do". :)
next prev parent reply other threads:[~2016-02-04 5:50 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-02 19:54 [PATCH] Trick to force setup of a specific configured E-Mail per repo Dan Aloni
2016-02-03 3:56 ` Jeff King
2016-02-03 5:19 ` Duy Nguyen
2016-02-03 5:22 ` Jeff King
2016-02-03 5:26 ` Duy Nguyen
2016-02-03 5:53 ` Jeff King
2016-02-03 8:01 ` Junio C Hamano
2016-02-03 8:21 ` Dan Aloni
2016-02-03 17:47 ` Eric Sunshine
2016-02-03 19:22 ` [PATCH v3] Add user.explicit boolean for when ident shouldn't be guessed Dan Aloni
2016-02-04 4:01 ` Jeff King
2016-02-04 4:19 ` Jeff King
2016-02-04 4:32 ` Jeff King
2016-02-04 5:36 ` Dan Aloni
2016-02-04 5:50 ` Jeff King [this message]
2016-02-04 9:07 ` Dan Aloni
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=20160204055035.GA13537@sigill.intra.peff.net \
--to=peff@peff.net \
--cc=alonid@gmail.com \
--cc=git@vger.kernel.org \
--cc=sunshine@sunshineco.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).