我目前有两个远程代码存储库(一个是GitHub存储库,另一个是Bitbucket存储库):
git@github.com:example1 / repo1.git
git@bitbucket.org:example2 / repo2.git
我已将公共密钥添加到GitHub和Bitbucket,但是通过ssh执行克隆对Bitbucket无效,对Github也没有任何想法吗?
我的克隆Github存储库的命令:
git clone git@github.com:example1/repo1.git
我的克隆Bitbucket存储库的命令:
git clone git@bitbucket.org:example2/repo2.git
尝试克隆时,屏幕处于空闲状态,并且不显示任何异常消息。
还尝试了以下格式:ssh://git@bitbucket.backend.atlassian.com:7999/ATLASSIAN/jira.git
git clone ssh://git@bitbucket.org:example2/repo2.git
Cloning into 'test'...
ssh: Could not resolve hostname bitbucket.org:test2: Name or service not known
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
AWS实例正在使用Ubuntu。
谢谢