美文网首页
GitLab SSH 密钥配置

GitLab SSH 密钥配置

作者: 阿豪02 | 来源:发表于2019-04-16 11:00 被阅读0次
一 创建 GitLab 账号

在 GitLab 上创建一个账号 gitlab@gitlab.com

二 设置账户信息

本地全局设置账户信息,打开 Git 命令工具行

git config --global user.name "gitlab"
git config --global user.email "gitlab@gitlab.com"

三 生产 SSH 密钥

设置完账号信息之后,根据设置的账号信息生成属于个人的 SSH 密钥

cd ~/.ssh
ssh-keygen -t rsa -C "gitlab@gitlab.com"

四 增加 SSH 密钥到 GitLab

密匙生成成功之后,复制 C:\Users\用户名.ssh 目录下的 id_rsa.pub 文件中的密钥,添加 GitLab 上

相关文章

网友评论

      本文标题:GitLab SSH 密钥配置

      本文链接:https://www.haomeiwen.com/subject/xfbvwqtx.html