gpt4 book ai didi

git - 如何修复 "fatal: remote origin already exists."上的 'git remote add' ?

转载 作者:行者123 更新时间:2023-12-02 15:10:51 25 4
gpt4 key购买 nike

我想在我的 U 盘上创建一个 git 存储库。在棒子上,我使用命令创建了一个裸 git 存储库

git init --bare MyRepo

在笔记本电脑(Ubuntu 14.04)上的存储库中,我发出了以下命令

git init
git add .
git commit -m 'first commit'
git remote add origin /media/alexander/Stick/MyRepo

出现错误

fatal: remote origin already exists.

我之前成功在棒上创建了一个 git 存储库,没有任何错误(当然使用不同的目录)。现在我得到这个错误。 “git status”的输出是

On branch master
Your branch is up-to-date with 'origin/master'.

nothing to commit, working directory clean

那么到底出了什么问题呢?

最佳答案

首先删除远程,然后再次添加路径。

$ git remote rm origin
$ git remote add origin <repo-url>

另一种方法:设置来源网址而不是添加。

$ git remote set-url origin <repo-url>

关于git - 如何修复 "fatal: remote origin already exists."上的 'git remote add' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46628436/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com