|
|
|
|
|
by Aissen
497 days ago
|
|
You can simplify this: git commit --fixup X ; git rebase --interactive --autostash --autosquash X^ If you do that often, an alias might help; I have one for the second command above. You might want to look at git-fixup or git-absorb for automatically finding the "X" commit. Aside: I really ought to try jj, it looks very promising. |
|