When I use the push window
And I klick on Push, suddenly a popup comes.
When I successfully log in using the button in the popup
I still receive the login popup after trying to push again
But when I use the terminal with the same github user, and push on the same repository, it works.
So it seems that the user has write access. But what should I do so that pushing with the push window works again?
EDIT
In the event log, there are Repository not found
errors, but when I go to the URL, I can see the repository.
09:39 Push failed
remote: Repository not found.
Authentication failed for 'https://github.com/..bla...git/'
CodePudding user response:
The issue seems to be happened since my coworker setted up github teams
, where my account is connected.
At the end my solution was to change the remote url https
variant, to the ssh
variant.
git remote set-url origin [email protected]:[repo-owner-username]/[repo-name].git
Now pushing over PhpStorm with the push window works again.