Git 无法将代码推送到 bitbucket

Git cannot push code to bitbucket

我刚刚在 Bitbucket 上创建了一个新的存储库。我的系统上有现有代码。 我导航到项目的根目录并执行以下代码:

git init
git add --all
git commit -m 'Initial commit'
git remote add origin git@bitbucket.org:<team>/<repo name>.git
git push origin master

运行 最后一个命令给我以下错误:

fatal: Could not read from remote repository.

Please make sure you have the correct access rights and the repository exists.

顺便说一句,我通过 https 使用 git。早些时候它曾经询问我的 Bitbucket 密码,但这次它甚至没有提示输入密码。

请帮忙

更改为 https 而不是 ssh 运行 这个命令

git remote set-url origin https://<repo_owner_name>@bitbucket.org/<teamname>/<reponame>.git