gpt4 book ai didi

git - GitHub:致命: 'origin'似乎不是git存储库

转载 作者:行者123 更新时间:2023-12-02 14:27:46 30 4
gpt4 key购买 nike

黄色,
我尝试按照以下步骤设置选项“在没有用户名和密码的情况下访问(推送到)Github”。
https://medium.com/@amanze.ogbonna/accessing-pushing-to-github-without-username-and-password-3022feb077fb

但是现在我得到一个似乎无法动摇的错误:

ficho@ficho-PS63-Modern-8M:~/Desktop/FUTSAL CUP 2020/www$ git push
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

ficho@ficho-PS63-Modern-8M:~/Desktop/FUTSAL CUP 2020/www$ git remote -v
github https://github.com/FilipZafran/FutsalCup.git (fetch)
github https://github.com/FilipZafran/FutsalCup.git (push)
origin origin (fetch)
origin origin (push)

我正在使用Ubuntu 18.4。

这是Github仓库:
https://github.com/FilipZafran/FutsalCup

不知道我搞砸了...

最佳答案

  • 来源是远程存储库的常规默认名称。这意味着运行git push将尝试将提交推送到原始存储库。
  • 查看您的 Remote 列表。您已经定义了名为github的存储库,而origin没有定义正确的url。
  • 要解决此问题,我将删除所有 Remote 并再次正确添加:
  • git remote remove origin
    git remote remove github
    git remote add origin git@github.com:FilipZafran/FutsalCup.git

    关于git - GitHub:致命: 'origin'似乎不是git存储库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60411394/

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