I am using TortoiseGit on Windows. When I am trying to Clone from the context menu of the standard Windows Explorer, I get this error:
Please make sur
If you're on a shared machine, using your own password or passwordless private key might be overkill. The safer option is an access token:
$ git clone https://<token>@github.com/<user>/<repo>.git
If you've already cloned the repo, you could just modify your remote setting:
$ git remote set-url origin https://<token>@github.com/<user>/<repo>.git
$ git pull
Already up to date.
Your git URL might have changed. Change the URL in the local directory by using the following command
git remote set-url origin git@yourGitUrlHere
Try https instead of ssh. Choose the https option from project home page where you copy the clone url from.