when I do `git push -u origin master`, it will show me as below:
--
The requested repository either does not exist or you do not have access. If you believe this repository exists and you have access, make sure you're authenticated.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
--
any one could give help....
Hi @jojo,
Welcome to the community.
To get more information on why Git push is failing, you can debug it by adding the debug flags below:
You can run the command below:
GIT_TRACE_PACKET=1 GIT_TRACE=1 GIT_SSH_COMMAND="ssh -v" GIT_CURL_VERBOSE=1 git push -u origin master
You can run the command in your terminal (For Mac/Linux) or Git bash(For Windows)
Regards,
Mark C
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.