Home > Software engineering >  Failing pulling existing Repo in Visual Studio
Failing pulling existing Repo in Visual Studio

Time:11-19

I downloaded a branch as zip file from git succesfully. After this I cloned repo from in the section below. But still I cant see all the branches that I wanna see. What's the problem here?

ss

CodePudding user response:

try using,

git clone {repo-URL}

In this way the cloned directory will be a git repository with all the git history and branches...

  • Related