SSH
-
git有两种操作方式
- http:通过账号密码操作托管项目
- ssh:通过配置sshkey操作托管项目
-
通过
ssh-keygen -t rsa -C "test@sina.com"
生成sshkey -
将id_rsa.pub配置到gitlab
-
配置ssh config文件
Host git.***.com
HostName git.***.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
- 从gitlab上copy ssh链接,在节点上执行 git clone gitsshlink