无法推送到新创建的Bitbucket存储库

时间:2019-04-25 15:03:06

标签: git bitbucket

我正在尝试将本地git存储库推送到新创建的 Bitbucket存储库。

我做了什么:

  1. git init
  2. git remote add origin git@bitbucket.org:USERNAME/REPONAME.git
  3. git add .
  4. git commit -m 'Initial commit'
  5. 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

我不太确定为什么这不起作用。昨天我以同样的方式建立了一个存储库,一切正常。

我在做什么错了?

1 个答案:

答案 0 :(得分:2)

我最近更改了Bitbucket用户名,并在控制台中运行ssh -T git@bitbucket.org时,它打印了我的新用户名。每当我将其改回以前的用户名时,它都可以正常工作。