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

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

如何解决此问题?我执行了以下操作:
git init .
git remote add origin [email protected]:myname/myproject.git
git add .
git commit -m "..."

git push  <<< error occurs here

我已经用ssh密钥设置了BitBucket,并且回购显示在仪表板上。

最佳答案

就我而言,git存储库在配置文件中以某种方式被复制:

cat .git/config

给我:
[remote "origin"]
    url = [email protected]:myUserName/myRepositoryName.git/myRepositoryName.git
    fetch = +refs/heads/*:refs/remotes/origin/*

如您所见,myRepositoryName是重复的,因此我将其删除,现在配置文件如下所示:
[remote "origin"]
    url = [email protected]:myUserName/myRepositoryName.git
    fetch = +refs/heads/*:refs/remotes/origin/*

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

关于git - Git错误:conq:存储库不存在,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8927070/

10-14 02:56