当新拿到一台Mac后,需要重新配置好多环境,今天就来记录一下如何配置git+gitlab(公司自己的私有仓库)+github的环境,使得git clone git@gitlab.100credit.cn:bairong/rule-config.git可是正常下载。
- 配置git环境
- git config --global user.name 'hehe'
- git config --global user.email 'hehe.he@100xxx.com'
- 生成公钥和私钥
- ssh-keygen -t rsa -C "hehe.he@100xxx.com"
这样就表示成功生成了私钥(.ssh/id_rsa)和公钥(.ssh/id_rsa)。
-
将公钥拷贝到gitlab和github的SSH keys中
- 将私钥配进
/Users/hehe/.ssh/config
文件中
Host gitlab.100credit.cn
HostName gitlab.100credit.cn
Port 3222
User heyingchun
IdentityFile ~/.ssh/id_rsa
如果总是报错:Bad owner or permissions on /Users/hehe/.ssh/config
那么在.ssh
目录下这样执行一下:sudo chmod 600 config