I am going through Github\'s forking guide: https://guides.github.com/activities/forking/ and I am trying to clone the repository onto my computer. However, running the command:
You might be using a windows or linux computer where you have not logged into git hub so the certificate is not verified. From the sytem where you are getting error login to github with the credential then try to use the command it will work . Good Luck
clt + V
Hope this will work
Use http instead of https; it will give warning message and redirect to https, get cloned without any issues.
$ git clone http://github.com/karthikeyana/currency-note-classifier-counter.git
Cloning into 'currency-note-classifier-counter'...
warning: redirecting to https://github.com/karthikeyana/currency-note-classifier-counter.git
remote: Enumerating objects: 533, done.
remote: Total 533 (delta 0), reused 0 (delta 0), pack-reused 533
Receiving objects: 100% (533/533), 608.96 KiB | 29.00 KiB/s, done.
Resolving deltas: 100% (295/295), done.
Edit: This particular users problem was solved by starting a new terminal session.
A ?
before the protocol (https) is not support. You want this:
git clone git@github.com:octocat/Spoon-Knife.git
or this:
git clone https://github.com/octocat/Spoon-Knife.git
Simple Answer is Just remove the https
Your Repo. : (git clone https://........)
just Like That (git clone ://.......)
and again type (git clone https://........)
Problem Solve 100%...
I have tried a lot of ways to solve this. But I am failed again and again. Then I did this:
Open Git Bash
> go to your directory
> paste the git clone https://shahadat@bitbucket.org/*******.git
after that a command prompt will be shown to give the login credentials. Give the credentials and clone your project.