将git与VS Code连接

时间:2018-02-02 19:09:24

标签: git github visual-studio-code

如何配置VS代码以使用git?我在VS Code中使用标准scm提供程序。我在我的电脑上安装了git,在一个文件夹中初始化了存储库,进行了一些更改,VS显示它已经提交但是我没有在我的github上看到,当我想从git VS中显示&# 34;您的存储库没有配置为从中拉出的远程控制器。"

2 个答案:

答案 0 :(得分:4)

首先需要将您的GitHub仓库添加为远程!为此,您可以按照Official Guide

进行操作
git remote add origin https://github.com/user/repo.git
#optionals below just to verify
git remote -v
origin  https://github.com/user/repo.git (fetch)
origin  https://github.com/user/repo.git (push)

然后,您可以使用official guide

推送您的本地提交
git push -u origin master

您可以直接从引入here

VS代码添加遥控器

答案 1 :(得分:0)

您需要将本地提交推送到遥控器。查看Git Status Bar ActionsRemotes