我还没有使用过我的bitbucket帐户一段时间。 我有分支主人的本地项目,所有承诺,我想移动到那里 当我进入
git remote add origin git@bb:my_user/my_repo.git
将我的回购转移到bitbucket。我一无所获。 没有错误,没有消息,我的仓库也不会出现在我的存储库下的bitbucket上。
如果我尝试那么
git push -u origin --all
我得到了
conq: repository does not exist.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
最有趣的是:如果我再次尝试第一个命令(添加原点),我会得到
fatal: remote origin already exists.
同时我可以成功地推送/拉取/克隆已经在bitbucket上的我的回购。 并且
ssh -T git@bb
给了我正确答案:
logged in as my_user.
You can use git or hg to connect to Bitbucket. Shell access is disabled.
你能帮我解决这个问题吗?