git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [RFC] git-rebase-rewind, nested rebases, remembering stgit
       [not found] <1641138664.431077840.1615652537045.JavaMail.root@zimbra39-e7>
@ 2021-03-13 16:37 ` ydirson
  2021-03-22  8:49   ` Christian Couder
  0 siblings, 1 reply; 3+ messages in thread
From: ydirson @ 2021-03-13 16:37 UTC (permalink / raw)
  To: git

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

Hello there,

I often find myself doing iterative refactorings, which can lead to
long branches, and while rebasing to edit HEAD~10 realize that I first
need to edit HEAD~20 or to add more commits below that stack.

If you've used stgit when it was a thing, you probably see how it
helped doing that.  While git-rebase has grown to do much more than
stgit in most areas, this is still one area where with a pain point
for me.

Here is a small git-rebase-rewind script I've been using for a few weeks,
starting with my most common use-case: automate worklow "edit git-rebase-todo
to prepend 'pick' commands for the N previous commits, then reset --hard HEAD~N".

As you will see from the new needs revealed by using this script (see in the
script header), I believe it would be valuable to integrate such a mechanism
directly into git-rebase.  Notably, "git rebase -i" itself can be seen as a
form of rewind, and this rewind feature would benefit from all the interactive
rebase work.

Does that sound like reasonable premises ?
-- 
Yann

[-- Attachment #2: git-rebase-rewind --]
[-- Type: application/x-shellscript, Size: 2465 bytes --]

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

* Re: [RFC] git-rebase-rewind, nested rebases, remembering stgit
  2021-03-13 16:37 ` [RFC] git-rebase-rewind, nested rebases, remembering stgit ydirson
@ 2021-03-22  8:49   ` Christian Couder
  2021-03-22  9:33     ` ydirson
  0 siblings, 1 reply; 3+ messages in thread
From: Christian Couder @ 2021-03-22  8:49 UTC (permalink / raw)
  To: Yann Dirson; +Cc: git

Hi Yann,

Nice to hear from you on the list!

On Sat, Mar 13, 2021 at 5:45 PM <ydirson@free.fr> wrote:
>
> Hello there,
>
> I often find myself doing iterative refactorings, which can lead to
> long branches, and while rebasing to edit HEAD~10 realize that I first
> need to edit HEAD~20 or to add more commits below that stack.
>
> If you've used stgit when it was a thing, you probably see how it
> helped doing that.  While git-rebase has grown to do much more than
> stgit in most areas, this is still one area where with a pain point
> for me.
>
> Here is a small git-rebase-rewind script I've been using for a few weeks,
> starting with my most common use-case: automate worklow "edit git-rebase-todo
> to prepend 'pick' commands for the N previous commits, then reset --hard HEAD~N".
>
> As you will see from the new needs revealed by using this script (see in the
> script header), I believe it would be valuable to integrate such a mechanism
> directly into git-rebase.  Notably, "git rebase -i" itself can be seen as a
> form of rewind, and this rewind feature would benefit from all the interactive
> rebase work.
>
> Does that sound like reasonable premises ?

Sorry for the late answer. It sounds reasonable to me.

It looks to me like a way to restart the whole interactive rebase
process though, so I wonder if calling it "--restart" would be better
than "--rewind".

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

* Re: [RFC] git-rebase-rewind, nested rebases, remembering stgit
  2021-03-22  8:49   ` Christian Couder
@ 2021-03-22  9:33     ` ydirson
  0 siblings, 0 replies; 3+ messages in thread
From: ydirson @ 2021-03-22  9:33 UTC (permalink / raw)
  To: Christian Couder; +Cc: git

Hi Christian,

> De: "Christian Couder" <christian.couder@gmail.com>
> À: "Yann Dirson" <ydirson@free.fr>
> Cc: "git" <git@vger.kernel.org>
> Envoyé: Lundi 22 Mars 2021 09:49:23
> Objet: Re: [RFC] git-rebase-rewind, nested rebases, remembering stgit
> 
> Hi Yann,
> 
> Nice to hear from you on the list!
> 
> On Sat, Mar 13, 2021 at 5:45 PM <ydirson@free.fr> wrote:
> >
> > Hello there,
> >
> > I often find myself doing iterative refactorings, which can lead to
> > long branches, and while rebasing to edit HEAD~10 realize that I
> > first
> > need to edit HEAD~20 or to add more commits below that stack.
> >
> > If you've used stgit when it was a thing, you probably see how it
> > helped doing that.  While git-rebase has grown to do much more than
> > stgit in most areas, this is still one area where with a pain point
> > for me.
> >
> > Here is a small git-rebase-rewind script I've been using for a few
> > weeks,
> > starting with my most common use-case: automate worklow "edit
> > git-rebase-todo
> > to prepend 'pick' commands for the N previous commits, then reset
> > --hard HEAD~N".
> >
> > As you will see from the new needs revealed by using this script
> > (see in the
> > script header), I believe it would be valuable to integrate such a
> > mechanism
> > directly into git-rebase.  Notably, "git rebase -i" itself can be
> > seen as a
> > form of rewind, and this rewind feature would benefit from all the
> > interactive
> > rebase work.
> >
> > Does that sound like reasonable premises ?
> 
> Sorry for the late answer. It sounds reasonable to me.
> 
> It looks to me like a way to restart the whole interactive rebase
> process though, so I wonder if calling it "--restart" would be better
> than "--rewind".

Right, it is indeed like doing another interactive rebase while the
current one is not finished.  Maybe just running "rebase -i" without
more option could be sufficient ?  That could break the expectation
when someone relies on rebase refusing to proceed while already rebasing,
though it could be mitigated if a "rebase --abort" just aborts the
most recent rebase.

There are quite a few UI issues to be thought through around here :)



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

end of thread, other threads:[~2021-03-22  9:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1641138664.431077840.1615652537045.JavaMail.root@zimbra39-e7>
2021-03-13 16:37 ` [RFC] git-rebase-rewind, nested rebases, remembering stgit ydirson
2021-03-22  8:49   ` Christian Couder
2021-03-22  9:33     ` ydirson

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