oliverdavies.uk/source/_posts/10.md
Oliver Davies 2c517f1d39 Move zet notes to blog posts
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-09-10 18:36:36 +01:00

557 B

title date tags note permalink
git-instafix 2024-08-22 12:28:26
Software Developmemt
Git
true /notes/10-git-instafix

git instafix is a tool that allows you to easily amend (or fix) previous Git commits.

How it works:

  • Commit your original changes.
  • Make more changes and stage them with git add -p.
  • Run git-instafix (or git instafix, but this doesn't tab complete for me).
  • Select the commit you want to amend.
  • git-instafix will amend it and move you back to the HEAD commit.