New comment by Chocimier on void-packages repository https://github.com/void-linux/void-packages/pull/23788#issuecomment-663625726 Comment: Please save description of actions in order of their execution. "Fork a repo" does not describe how to send PR. "git push --force" paragraph should be put in "Review" chapter. New branch is way to go when usual rewriting history caused troubles. Could you add something like following? > More powerful way to modify commits than `git commit --amend` is [`git rebase -i HEAD~9`](https://git-scm.com/docs/git-rebase#_interactive_mode). It allows to join, reorder, change description of past commits and more. Alternatively, you can make other branch and push it to existing PR: git checkout master git checkout -b \ # do changes anew git push -f \ \:\ Again: having minimal description of how to share done work at end of manual looks reasonable to me.