序言
Gitlab 同时支持ssh和HTTP[s]两种方式连接远程代码仓库。
- ssh
基于设备,需要将该设备的.ssh/id_rsa.pub文件内容设置到Gitlab中。
- HTTP[s]
基于账号,在Gitlab中添加用户账号。
免密登录
- ssh方式天生就是不需要输入账户/密码。
- HTTP[s]免密登录,操作步骤:
vim ~/.git-credentials
添加内容:http[s]://{username}:{password}@gitlab.yourdomain.com
git config --global credential.helper store
检测是否成功
git pull