我正在尝试将本地git存储库推送到新创建的 Bitbucket存储库。
我做了什么:
git init
git remote add origin git@bitbucket.org:USERNAME/REPONAME.git
git add .
git commit -m 'Initial commit'
git push -u origin master
我没有推送,而是收到:
repository does not exist.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
当我cat .git/config
时,我可以看到应该使用的正确网址:
url = ssh://git@bitbucket.org/USERNAME/REPONAME.git
我不太确定为什么这不起作用。昨天我以同样的方式建立了一个存储库,一切正常。
我在做什么错了?
答案 0 :(得分:2)
我最近更改了Bitbucket用户名,并在控制台中运行ssh -T git@bitbucket.org
时,它打印了我的新用户名。每当我将其改回以前的用户名时,它都可以正常工作。