当前位置: 首页>>技术教程>>正文


如何使用 SSH 访问 git 存储库?

,

问题描述

我有公钥。我认为这是与 git 存储库所在服务器的 SSH 连接所必需的。

现在我不知道如何获取代码。有人可以告诉我必须执行的完整程序才能获得代码吗?

  1. 安装git+相关配置

  2. 建立 SSH 连接

  3. 获取回购协议

最佳答案

设置Git

  1. 使用 sudo apt-get install git 安装它(参见 here )

  2. 配置 Git(参见 here )

在 GitHub/BitBucket 上实现 SSH

  1. 使用 ssh-keygen -t rsa -b 4096 生成 SSH 密钥(请参阅 here )

  2. 复制你的SSH公钥内容,默认是文件id_rsa.pub

  3. 将内容粘贴到 SSH 密钥部分的 GitHub/BitBucket 帐户中

获取回购协议

只需克隆它:

  • GitHub:git clone [email\xa0protected]:YOUR_USERNAME/REPO_NAME.git

  • 位桶:git clone [email\xa0protected]:USERNAME/REPO_NAME.git

有关管理存储库的更多信息,请查看 Git For Humans guide by Lucio Martinez

图形用户界面工具

您可以使用 install git-gui(内置 GUI 工具)进行提交。

有关更多选项,请查看 the list on the official page

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/14367.html,未经允许,请勿转载。