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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.