I can't push to my repository. It displays me this error:
remote: No anonymous write access.
How can I log in to my GitHub account. I know the login username and password, but Git doesn't ask me about it. I use HTTPS.
I can't push to my repository. It displays me this error:
remote: No anonymous write access.
How can I log in to my GitHub account. I know the login username and password, but Git doesn't ask me about it. I use HTTPS.
To push your project to the GitHub repository, follow the following steps:
To connect to your repository, use the below command
git remote add origin "URL of the repository"
git push origin
git pull origin
Or, if you are using Visual Studio Code or any other text editor:
Just clone the empty repository at start using Git Bash and then you can push and pull.