New comment by kawaiiamber on void-packages repository https://github.com/void-linux/void-packages/pull/27618#issuecomment-761539910 Comment: There are three commits, there should only be one. Try squashing your commits with rebase: `git rebase -i HEAD~3` and squash the last two, having the commit message just be "New package: OpenCoarrays-2.9.2", just use `amend` to commit future changes. ``` git commit --amend git push origin master -f ``` One thing I might recommend while I'm on git things, I would recommend making a specific branch on your fork, e.g. ``` git checkout -b opencoarrays git add -A git commit -m "New package: OpenCoarrays-2.9.2" git push origin opencoarrays ``` then, on this PR, switch to request merging that branch from your fork to the upstream master branch.