Git Fixup Commands
git fixup, git amend, and git reword
Python
A suite of Git commands to easily fixup previous Git commits using
Install via
git commit --fixup and git rebase. Works with any commit in the commit tree, including the root commit and merge commits.Install via
pip install git-fixup-commands. Features
git fixup COMMIT_REF- Fixup the given commit with the currently staged changes (stage using git add). Unstaged changes are temporarily stashed.git amend COMMIT_REF- Amend the given commit (like git commit --amend) with the currently staged changes (stage using git add). Unstaged changes are temporarily stashed.git reword COMMIT_REF- Reword / edit the commit message of the given commit.