Visual Studio 克隆和添加当前存储库

polhcujo  于 2023-06-24  发布在  其他
关注(0)|答案(2)|浏览(154)

我想从github克隆一个项目,并使用vscode或visual studio。我用git clone在本地克隆了这个项目,但是我不能把它推送到我的仓库。我可能做错了什么。
从我的个人github将整个克隆项目(完全一样,包括所有分支等)添加到空仓库中的步骤是什么?你能告诉我,在vscode和visual studio中的变体吗?你可以使用git命令。

qyswt5oh

qyswt5oh1#

你应该将本地git文件夹中的remote改为你的个人github仓库:

git remote set-url origin https://github.com/OWNER/REPOSITORY.git
4xrmg8kj

4xrmg8kj2#

替代上述解决方案,您可以尝试下面。

git remote add <new-origin> <new-repository-URL>
git remote -v
git push <new-origin> --all
git push <new-origin> --tags

相关问题