ubuntu22.04怎么连接github
时间: 2023-09-30 13:12:14 浏览: 105
连接 Github 可以使用 SSH 或 HTTPS 协议。以下是连接 Github 的步骤:
1. 首先,确保您已经在 GitHub 上创建了一个账户。
2. 打开终端,并安装 git:`sudo apt-get install git`
3. 生成 SSH 密钥:`ssh-keygen -t rsa -b 4096 -C "your_email@example.com"`,其中 "your_email@example.com" 是您的邮箱地址。
4. 在 GitHub 上添加公钥。在页面右上角点击头像,选择 "Settings",然后点击 "SSH and GPG keys",再点击 "New SSH key"。将您的公钥粘贴到 "Key" 字段中,然后点击 "Add SSH key"。
5. 验证 SSH 连接是否正常:`ssh -T git@github.com`。如果您第一次连接,会提示 "Are you sure you want to continue connecting (yes/no)?",输入 "yes" 并回车。如果连接正常,会输出 "Hi username! You've successfully authenticated, but GitHub does not provide shell access."。
6. 如果您选择使用 HTTPS 协议,可以在 GitHub 上创建一个 token。在页面右上角点击头像,选择 "Settings",然后点击 "Developer settings",再点击 "Personal access tokens",然后点击 "Generate new token"。在 "Note" 字段中输入一个名称,然后选择需要访问的权限,最后点击 "Generate token"。将生成的 token 保存在安全的地方。
7. 在终端中配置用户名和邮箱:`git config --global user.name "Your Name"` 和 `git config --global user.email "your_email@example.com"`。
8. 您现在可以将您的代码克隆到本地:`git clone git@github.com:username/repo.git` 或 `git clone https://github.com/username/repo.git`(如果使用 HTTPS 协议,则需要在 url 中加上 token)。
9. 提交修改:在本地修改代码后,使用 `git add` 命令将修改添加到暂存区,然后使用 `git commit` 命令提交修改。最后使用 `git push` 命令将修改推送到 GitHub。
希望以上步骤可以帮助到您。
阅读全文