New comment by kawaiiamber on void-packages repository https://github.com/void-linux/void-packages/pull/27618#issuecomment-761768503 Comment: It looks like you pulled all changes from latest upstream master branch - over 700 commits! You might want to do a couple of things: 1. Add an upstream remote: `git remote add upstream https://github.com/void-linux/void-packages.git` 2. Rebase your branch against upstream master: `git pull --rebase upstream master` 3. Add a branch specifically for your template: `git checkout -b opencoarrays`, then add your template and push there: `git push origin opencoarrays`, switch this PR to merge from that branch rather than your forked master branch.