如何使用 Visual Studio 代码连接到我现有的 Git 存储库?

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

自 v0.9.1 以来,我已经使用 Visual Studio 代码很长时间了。我现在 运行 需要使用 GitHub 和在线 Git 存储库。

我设置了在线 Git 存储库,并一直在使用 GitHub 将更改推送到在线存储库。我最近意识到我可以使用 Visual Studio 代码来完成这两项操作:编辑我的代码,然后将其发送到在线存储库。

我对整个 Git 概念很陌生。 Visual Studio 代码让我安装了 "Git" 插件,它安装了 Git Bash、Git CMD 和 Git GUI。

这是在线存储库 URL 我正在尝试访问:https://github.com/SpectrumGraphics/Spectrum-Graphic-Designs.git

使用 Git 插件中的 Git GUI。

使用您拥有的 URL 克隆您的在线存储库

克隆后,对文件进行更改。当您进行更改时,您可以看到数字的变化。 提交 这些更改。

远程获取(检查您工作时是否有任何更新)。

如果 fetch 操作为您提供有关远程存储库中更改的更新,进行拉取 操作将更新您的副本在 Visual Studio 代码中。否则,如果远程存储库中没有任何更改,请不要进行拉取操作。

通过推送操作将您的更改推送到上游远程存储库。

  1. 使用 git clone 将您的存储库克隆到文件夹中(比如 work)。您应该会看到一个新的子文件夹,work/.git.
  2. 在 Visual Studio 代码中打开文件夹 work - 一切正常!

PS: 吹走临时文件夹

  1. 打开Visual Studio代码终端 (Ctrl + `)
  2. 编写Git克隆命令。例如,

    git clone https://github.com/angular/angular-phonecat.git
    
  3. 打开刚刚克隆的文件夹(菜单文件打开文件夹

另一种选择是使用内置的命令面板,它将引导您将 Git 存储库克隆到新目录。

来自Using Version Control in VS Code

You can clone a Git repository with the Git: Clone command in the Command Palette (Windows/Linux: Ctrl + Shift + P, Mac: Command + Shift + P). You will be asked for the URL of the remote repository and the parent directory under which to put the local repository.

在 Visual Studio 代码的底部,您将获得克隆的状态更新。一旦完成,信息消息将显示在顶部附近,允许您打开创建的文件夹。

请注意,Visual Studio 代码使用您机器的 Git installation,并且需要 2.0.0 或更高版本。

  1. 打开 Vs 代码
  2. 去查看
  3. 单击终端以在 VS Code 中打开一个终端
  4. 从 GitHub 页面复制现有存储库的 link。
  5. 键入“git clone”并粘贴 link,即“git clone https://github.com/...”
  6. 这将在您的 Vs 代码编辑器中打开存储库。