Visual Studio Code -连接到远程Git存储库并将本地文件推送到新的远程存储库

az31mfrm  于 2023-05-12  发布在  Git
关注(0)|答案(4)|浏览(191)

我用Visual Studio Code创建了一个本地项目,实现了一个本地Git仓库
然后,我在Visual Studio Online上创建了一个Git存储库,我想将所有项目文件 * 推送 * 到远程存储库...
做这件事的正确程序是什么?
我的**.git\config**文件现在看起来像这样:

[core]
    repositoryformatversion = 0
    filemode = true
    bare = false
    logallrefupdates = true
    ignorecase = true
    precomposeunicode = true
wmomyfyw

wmomyfyw1#

我假设你开始在一个目录中工作,并且没有在那里使用Git。以下代码应适用于Git Bash

cd "path to your repository"
git init
git add . # If you want to commit everything. Otherwise use .gitconfig files
git commit -m "initial commit" # If you change anything, you can add and commit again...

要添加遥控器,只需

git remote add origin https://...
git remote show origin # If everything is ok, you will see your remote
git push -u origin master # Assuming you are on the master branch.

-u设置了一个上游引用,Git知道从哪里到fetch/pull,以及将来从哪里到push

myss37ts

myss37ts2#

现在可以从Visual Studio Code设置原点,而无需在命令行中键入:

git remote add origin https://github.com/USR/REPO.git

在Visual Studio代码中,如果您在Windows上,则可以按Ctrl + Shift + P并键入remote
从那里选择Git: Add Remote,您将有两个步骤:

j2cgzkjk

j2cgzkjk3#

来自评论:
VSCode不支持UI中的“添加远程”操作(2018年4月)
实际上,从Visual Studio Code 1.46(2020年5月)开始:

从GitHub添加remote

现在,您可以使用Git轻松地将GitHub存储库作为远程存储库添加到本地存储库:添加远程...命令

zsbz8rwp

zsbz8rwp4#

它可以在GitHub上运行,但不能在其他服务器上运行。我有自己的服务器,我有自己的服务器。我仍然需要自己创建存储库,比如described here,我可以连接到存储库,一切正常。我可以从我的桌面同步到服务器,并在我的笔记本电脑上拉出和推出vscode

相关问题