New comment by not-chicken on void-packages repository https://github.com/void-linux/void-packages/pull/27787#issuecomment-762707115 Comment: >Then I wonder how --amend knows which commit to amend to It amends the most recent commit. So you can use use it for editing pinta one. >maybe I'd have to git rebase -i HEAD~2 Yeah for editing `mono-addins` commit you'd need to do `git rebase -i HEAD~2`, it will open your text editor with last 2 commits, and then you replace `pick` with `edit` in front of `mono-addins` commit.