【问题】Gitlab:You won't be able to pull or push repositories via SSH until you add an SSH key to your profile
解决办法:
1 安装Git
sudo apt-get install git-core
#验证是否成功安装,输出版本信息即成功。
git --version
2 初始化本地用户
git config --global user.name 用户名
git config --global user.email 用户邮箱
3 生成SSH密钥
使用如下命令生成rsa密钥:
ssh-keygen -t rsa -C “用户邮箱”
说明:一路回车,在根目录 .ssh目录下会生成id_rsa和id_rsa.pub。
4 id_rsa 和 id_rsa.pub文件文章来源:https://www.toymoban.com/news/detail-454095.html
c文章来源地址https://www.toymoban.com/news/detail-454095.html
到了这里,关于【Ubuntu】【问题】Gitlab:You won‘t be able to pull or push repositories via SSH until you add an SSH key t的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!