配置ssh免密登录

1.生成ssh密钥

ssh-keygen -t rsa -C ‘[email protected]

然后一路回车(-C 参数是你的邮箱地址)

2. 复制公钥到gitlab

然后打开/.ssh/id_rsa.pub文件(表示用户目录,比如我的windows就是C:\Users\Administrator),复制其中的内容,把公钥复制
打开gitlab,下拉右上角头像,点击Edit profile>> SSH Keys,并把上一步中复制的内容粘贴到Key所对应的文本框,在Title对应的文本框中给这个sshkey设置一个名字,点击Add key按钮
配置ssh免密登录_第1张图片

3.本地配置git config

git config --global “user.name” “xxx.xx”
git config --global “user.name” “[email protected]

你可能感兴趣的:(linux,1024程序员节,ssh,windows,linux)