From: Christian Couder <chriscool@tuxfamily.org>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org,
Johannes Schindelin <Johannes.Schindelin@gmx.de>,
Stephan Beyer <s-beyer@gmx.net>,
Daniel Barkalow <barkalow@iabervon.org>,
Jakub Narebski <jnareb@gmail.com>
Subject: Re: [PATCH] revert: libify pick
Date: Sat, 1 Aug 2009 17:48:29 +0200 [thread overview]
Message-ID: <200908011748.30032.chriscool@tuxfamily.org> (raw)
In-Reply-To: <7v8wi52uig.fsf@alter.siamese.dyndns.org>
On Friday 31 July 2009, Junio C Hamano wrote:
> Christian Couder <chriscool@tuxfamily.org> writes:
> >
> > This patch is part of trying to port git-rebase--interactive.sh
> > to C using code from the sequencer GSoC project. But maybe it can
> > be seen as a clean up too.
>
> Thanks. Why doesn't this have Stephan's sign-off?
It has it in the v2 series I will post just after sending this email.
As usual feel free to squash all or some of the patches together if you
prefer.
> The new "pick.c" file seems to be a nicer implementation of the main
> logic of builtin-revert.c and its primary niceness comes from the use of
> strbuf.
>
> A few minor points and comments.
>
> * error() returns -1.
>
> error("message"); => return error("message");
> return -1;
This change is in patch 2.
> * pick() might be a bit too short and abstract name for a generic
> library function.
I changed it to "pick_commit()" in patch 3.
> * REVERSE is made to imply ADD_NOTE but the codepath that acts on
> ADD_NOTE never seems to be reached if REVERSE is set.
I removed code that made REVERSE imply ADD_NOTE in patch 4
> The intent of pick() funtion looks like it starts from the current index
> (not HEAD), and allow the effect of one commit replayed (either forward
> or backward) to that state, leaving the result in the index.
>
> You do not have to start from a commit, so you can replay many commits to
> the index in sequence without commiting in between to squash multiple
> steps if you wanted to. I think that makes sense as a nice general
> interface.
>
> The "if (no_commit)" codepath in the original code did things very
> differently from the usual "start from HEAD and replay the effect"
> codepath and it warranted the big "We do not intend to commit
> immediately" comment. For pick() function, however, the "start from
> index" is the normal and only mode of operation. Keeping the big comment
> is misleading.
I removed the misleading part and added some of your comments in patch 5.
> When it replays another commit on HEAD, the new code does not read "HEAD"
> by hand into head anymore, but it still has the check between the index
> and "HEAD" and refuses to run if the index is dirty, which means the tree
> you get from write_cache_as_tree() is guaranteed to be the same as
> "HEAD", so this conversion looks correct.
Thanks,
Christian.
prev parent reply other threads:[~2009-08-01 15:48 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-31 3:25 [PATCH] revert: libify pick Christian Couder
2009-07-31 7:15 ` Junio C Hamano
2009-08-01 15:48 ` Christian Couder [this message]
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=200908011748.30032.chriscool@tuxfamily.org \
--to=chriscool@tuxfamily.org \
--cc=Johannes.Schindelin@gmx.de \
--cc=barkalow@iabervon.org \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jnareb@gmail.com \
--cc=s-beyer@gmx.net \
/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).