然后,该怎么办?我在ubuntu,我不知道如何继续处理这些文件,以便下载回购
答案 0 :(得分:2)
您不仅必须将它们复制到〜/ .ssh文件夹中,还需要确保:
它们的名称是正确的:
id_rsa (for the bigger of the two files)
id_rsa.pub (for the smaller)
他们受到正确保护
chmod 600 id_rsa*
然后你can copy id_rsa.pub
(make sure it is in one line) in your BitBucket account, ssh keys section。
最后,您可以测试是否可以使用
ssh -Tv git@bitbucket.org
最后,您应该看到:
logged in as <yourBitBucketAccount>.
You can use git or hg to connect to Bitbucket. Shell access is disabled.
这意味着您已经过适当的身份验证,并且可以像自己一样回到Bitbucket 如果您没有看到,前面的行允许您仔细检查ssh考虑的文件。