I recently changed my username on github (so that everything redirects to a new URL on my username)
I got this error through a cmd line git push
You must verify your email address
Fatal: The request URL returned error: 403
However, github wouldn't let me resend email verification under account > settings
I also did the following, per githubs guidelines on username change
git remote set-url origin https://github.com/myNewUserName/repo-name
on all my new repos. Then I ensured I had the emails set correctly on my .git/config file
git config --global user.email "myGithubEmail@gmail.com"
Still could not fix problem


