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