Reputation: 29
I am having issues with cloning repos.
I enter
$ git clone https://github.com/username/myrepo
Cloning into "myrepo" ...
and then nothing happens.
I believe it happened after I installed Dockertools and localstack. Not sure what has changed
Upvotes: 1
Views: 11931
Reputation: 123
I faced the similar problem. In my case public repos are cloning correctly but for private repos it only showed "Cloning into [projectName]" but nothing happened.
Solution was: I just added SSH key to my bitbucket setting.
Here is 2 URL I followed.
After this your problem should be solve if it hung for private repo.
Upvotes: 1
Reputation: 4040
Use the following steps for git clone
git clone https-link
This will clone the git repo to your folder where you executed that command
Upvotes: 2