From: Junio C Hamano <gitster@pobox.com>
To: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Cc: Sverre Rabbelier <srabbelier@gmail.com>,
Stephen Haberman <stephen@exigencecorp.com>,
"Shawn O. Pearce" <spearce@spearce.org>,
Thomas Rast <trast@student.ethz.ch>,
Git Mailing List <git@vger.kernel.org>,
Stephan Beyer <s-beyer@gmx.net>,
Christian Couder <chriscool@tuxfamily.org>,
Daniel Barkalow <barkalow@iabervon.org>
Subject: Re: [PATCH] rebase -i: avoid 'git reset' when possible
Date: Sun, 01 Mar 2009 00:38:44 -0800 [thread overview]
Message-ID: <7vvdqt8wob.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <alpine.DEB.1.00.0902271354130.6600@intel-tinevez-2-302> (Johannes Schindelin's message of "Fri, 27 Feb 2009 13:56:51 +0100 (CET)")
Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
> diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
> index 3dc659d..a9617a2 100755
> --- a/git-rebase--interactive.sh
> +++ b/git-rebase--interactive.sh
> @@ -442,6 +442,27 @@ do_rest () {
> done
> }
>
> +# skip picking commits whose parents are unchanged
> +skip_unnecessary_picks () {
> + current=$ONTO
> + i=0
> + while read command sha1 rest
> + do
> + test pick = "$command" &&
> + test $current = "$(git rev-parse $sha1^)" ||
> + break
> + current=$(git rev-parse $sha1)
> + i=$(($i+1))
> + done < "$TODO"
> + test $i = 0 || {
> + sed -e "${i}q" < "$TODO" >> "$DONE" &&
> + sed -e "1,${i}d" < "$TODO" >> "$TODO".new &&
> + mv -f "$TODO".new "$TODO" &&
> + ONTO=$current ||
> + die "Could not skip $i pick commands"
> + }
> +}
I do not think you have to count and then run two sed.
this=$ONTO
skip_pick=t
while read command sha1 rest
do
sha1=$(git rev-parse "$sha1")
case "$skip_pick,$command" in
t,pick | t,p)
if test "$this" = "$sha1"
then
echo >&3 "$command $sha1 $rest"
this="$sha1"
continue
fi
esac
skip_pick=f
echo "$command $sha1 $rest"
done <"$TODO" >"$TODO.new" 3>>"$DONE" &&
...
next prev parent reply other threads:[~2009-03-01 8:40 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-26 14:55 [RFH] rebase -i optimization Sverre Rabbelier
2009-02-26 14:59 ` Johannes Schindelin
2009-02-26 15:33 ` Sverre Rabbelier
2009-02-27 10:50 ` Johannes Schindelin
2009-02-27 12:29 ` Sverre Rabbelier
2009-02-27 12:56 ` [PATCH] rebase -i: avoid 'git reset' when possible Johannes Schindelin
2009-02-27 13:03 ` Sverre Rabbelier
2009-02-27 13:33 ` Johannes Schindelin
2009-03-01 8:38 ` Junio C Hamano [this message]
2009-03-01 21:57 ` Johannes Schindelin
2009-03-03 0:57 ` Junio C Hamano
2009-03-03 9:24 ` Johannes Schindelin
2009-03-03 9:55 ` [PATCH v2] " Johannes Schindelin
2009-03-03 11:19 ` Johannes Sixt
2009-03-03 11:21 ` Johannes Schindelin
2009-02-27 1:10 ` [RFH] rebase -i optimization Sitaram Chamarty
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=7vvdqt8wob.fsf@gitster.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=Johannes.Schindelin@gmx.de \
--cc=barkalow@iabervon.org \
--cc=chriscool@tuxfamily.org \
--cc=git@vger.kernel.org \
--cc=s-beyer@gmx.net \
--cc=spearce@spearce.org \
--cc=srabbelier@gmail.com \
--cc=stephen@exigencecorp.com \
--cc=trast@student.ethz.ch \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.