How do I connect to my existing Git repository using Visual Studio Code?

后端 未结 4 1267
日久生厌
日久生厌 2020-12-12 21:56

I\'ve been using Visual Studio code for a long time, since v0.9.1. I now have run into the need to use GitHub and an online Git repository.

I have the online Git rep

4条回答
  •  轮回少年
    2020-12-12 22:16

    1. Open Visual Studio Code terminal (Ctrl + `)
    2. Write the Git clone command. For example,

      git clone https://github.com/angular/angular-phonecat.git
      
    3. Open the folder you have just cloned (menu FileOpen Folder)

提交回复
热议问题