New comment by paper42 on void-packages repository https://github.com/void-linux/void-packages/pull/34459#issuecomment-997285061 Comment: just `git rebase upstream/master` should be enough. I am not sure how you got to this situation, but here is what I do when amending commits in a PRs. ``` ~make changes~ git add git commit --amend git rebase upstream/master # upstream is a remote which points to void-linux/void-packages, origin is my own fork git push --force-with-lease # or just --force ```