gpt4 book ai didi

Git 错误 : conq: repository does not exist

转载 作者:IT王子 更新时间:2023-10-29 00:53:56 24 4
gpt4 key购买 nike

我在使用 BitBucket 的 Git 中遇到以下错误:

conq: repository does not exist.
fatal: The remote end hung up unexpectedly

如何解决这个问题?我执行了以下操作:

git init .   
git remote add origin git@bitbucket.org:myname/myproject.git
git add .
git commit -m "..."

git push <<< error occurs here

我已经使用 ssh key 设置了 BitBucket,repo 显示在仪表板上。

最佳答案

在我的例子中,git 存储库以某种方式在配置文件中被复制:

cat .git/config

给我:

[remote "origin"]
url = git@bitbucket.org:myUserName/myRepositoryName.git/myRepositoryName.git
fetch = +refs/heads/*:refs/remotes/origin/*

如您所见,myRepositoryName 是重复的,所以我删除了它,现在配置文件如下所示:

[remote "origin"]
url = git@bitbucket.org:myUserName/myRepositoryName.git
fetch = +refs/heads/*:refs/remotes/origin/*

这样做,我的问题就解决了。现在推送已正确完成。希望这对某人有所帮助。

关于Git 错误 : conq: repository does not exist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8927070/

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