Y
Hacker News
new
|
ask
|
show
|
jobs
by
maxekman
1420 days ago
`git rebase -i origin/main` (or HEAD~N or any other base) with the e/edit action on selected commit will do the same with only built in functionality.
1 comments
ridiculous_fish
1420 days ago
Yep, and git-prev-next is built on interactive rebase. It's just a lot faster to run `git prev`, compared to `git rebase -i HEAD^^` and then muck around in a text editor.
link