我无法克隆我具有写访问权限级别的 bitbucket 存储库
I am unable to clone a bitbucket repository that I have write access level
我的计算机上有多个 ssh(不太确定怎么说),相信这可能是我无法使用 pycharm 拉取、推送或克隆的原因。
当我在终端中输入此代码时:
git clone ssh://git@bitbucket.org:#####/#######.git
我收到错误:
Cloning into '######'...
ssh: connect to host bitbucket.org:##### port 22: Operation timed out
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我在这家初创公司的同事可以访问并且能够克隆并推送到它。我相信原因可能是我将 ssh 用于计算机上的另一个程序。但我不确定这会如何影响它。我从 google 搜索中得到这个,所以我也可能会弄错。还有其他人 运行 遇到这种情况吗?
也许你可以换个方式试试,克隆一个仓库会更容易
试试这个:
git clone https://example@bitbucket...
通过这种方式,您可以在没有 ssh 密钥的情况下克隆存储库
此外,您可以查看以下网站:
https://confluence.atlassian.com/bitbucket/copy-your-git-repository-and-add-files-746520876.html
我的计算机上有多个 ssh(不太确定怎么说),相信这可能是我无法使用 pycharm 拉取、推送或克隆的原因。
当我在终端中输入此代码时:
git clone ssh://git@bitbucket.org:#####/#######.git
我收到错误:
Cloning into '######'...
ssh: connect to host bitbucket.org:##### port 22: Operation timed out
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我在这家初创公司的同事可以访问并且能够克隆并推送到它。我相信原因可能是我将 ssh 用于计算机上的另一个程序。但我不确定这会如何影响它。我从 google 搜索中得到这个,所以我也可能会弄错。还有其他人 运行 遇到这种情况吗?
也许你可以换个方式试试,克隆一个仓库会更容易
试试这个:
git clone https://example@bitbucket...
通过这种方式,您可以在没有 ssh 密钥的情况下克隆存储库
此外,您可以查看以下网站:
https://confluence.atlassian.com/bitbucket/copy-your-git-repository-and-add-files-746520876.html