When pushing to github, I seem to always get a "Heads up!" message (below) that tells me that my master branch was renamed to main. But I see no main branch on the remote origin repository.
Message Example
$ git push -f
...
remote:
remote: Heads up! The branch 'master' that you pushed to was renamed to 'main'.
remote:
I've checked everything I could think of and there is no main branch on origin, there is no main branch on local. Where is that message coming from?
Here is a listing of my branches:
$ git branch --all
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
Solutions Tried
I tried using git branch -u origin/master I've seen suggested elsewhere, but it did not help.