1 yum install git git --version 查看是否成功
2 git config --global user.name "Firstname Lastname" git config --global user.email "your_email@email.com"
3 ssh-keygen -t rsa -C "your_email@email.com" id\_rsa文件權限是600才能夠, 並在github上配置ssh
4 先執行:`ssh-agent bash`(必定要先執行這一步!) 再執行:`ssh-add ~/.ssh/xxx`(`xxx`爲你想要用的文件名) ssh -T git@github.com
5 service sshd restart