centos 配置 git 连接 github
-
首先安装 git
-
创建 ssh key
shellssh-keygen -t rsa
-
复制公钥
shellcat ~/.ssh/id_rsa.pub # 打印出公钥内容然后复制
-
配置 github
- 登录网页 github 账号;
- 进入 setting;
- 点击 SSH and GPG keys,点击 New SSH key
- titile 随便填,把刚才复制的公钥填到 Key 里
-
在 centos 上配置 github 账号
shellgit config --global user.name "xxxx" //配置用户名 git config --global user.email "xxx@xx.com" //配置email
测试是否连接成功
shell
ssh -T git@github.com