通过ssh克隆Bitbucket存储库

问题描述 投票:1回答:1

如何通过ssh而不是http从Bitbucket克隆存储库?我已经在本地计算机(Windows)中安装了git

git ssh bitbucket git-clone
1个回答
0
投票
  1. 生成SSH密钥:ssh-keygen -t rsa -C "your-email-address"
  2. 按Enter键,直到生成randomart图像。
  3. 登录到Bitbucket-> View profile-> Manage account-> SSH keys-> Add key
  4. 在文本框中粘贴您在步骤1中生成的密钥。要获取密钥,请运行以下命令:cat ~/.ssh/id_rsa.pub
  5. 转到您的存储库-> Clone。现在,您可以看到存储库的SSH URL。复制它。
  6. 克隆您的存储库:git clone <ssh-url>
© www.soinside.com 2019 - 2024. All rights reserved.