我正在尝试在Bitbucket中添加新的存储库。当我输入 -
$git remote add origin git@bitbucket.org:tylerr82/example.git
弹出 -
fatal:remote origin already exists.
当我输入 -
时git push -u origin --all
弹出 -
conq: repository down not exist.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
我正在阅读第一个错误,因为它说它存在,但是当我试图推动它时说它没有。当我谷歌第二次错误时,它似乎是一个连接问题。我只在Bitbucket中有一个公钥,在我的选美中只有一个私钥。我已经删除了所有键,只用这两个键重新开始。当我输入ssh -T -v gitbucket.org时,我收到了key_load_public:没有这样的文件或目录,最后它说“Permission denied(publickey)
我做错了什么?
答案 0 :(得分:0)
看起来你已经有了一个原始远程
尝试git remote -v
检查与原点相关联的网址,这可能是错误的
更改原始远程网址尝试使用
git remote set-url origin git@bitbucket.org:tylerr82/example.git
git add . -A
git commit -am "first commit"
git push origin master