ipsc shooter, shitposter

  • 0 Posts
  • 3 Comments
Joined 2 months ago
cake
Cake day: January 19th, 2025

help-circle

  • Not exactly, because n commits will have been squashed into one, so making the edit would lose the reference to the originals which should have been squashed with other commits

    See but you can break the commit back apart by doing a git rebase interactive, selecting that squashed commit as the commit to edit, then doing a git reset HEAD~1 then recommit it in pieces, then git rebase --continue

    Then git rebase -i a second time and then remove the commit that you don’t want to be included