Github配置SSH Keys
1.安装git
Windows版:http://code.google.com/p/msysgit/
Mac OS版本:http://code.google.com/p/git-osx-installer/
2.SSH配置
想要让本地版本库与远程版本库通信,需要配置一下SSH key
2.1 Windows下配置SSH
官方文档:https://help.github.com/articles/generating-ssh-keys
2.1.1 检查计算机上是否已经有SSH key
$ cd ~/.ssh
如果出现““No such file or directory”或类似的语句,说明缺少ssh的key。
2.1.2 创建新的SSH key
$ ssh-keygen -t rsa -C "your_email@youremail.com"
将your_email@youremail.com替换为你的邮箱
然后会出现类似下图的提示
直接回车即可,然后输入密码
2.2.3 添加 ssh key 到github上
登陆github:Account setting-->SSH Keys-->Add SSH key
打开C盘-->用户-->.ssh文件夹内的id_rsa.pub文件用记事本打开复制粘贴到key里面,title不用填自动生成。
2.2.4 配置git的用户名和email
2.2.5 检查是否配置成功
ssh -T git@github.com
如果出现 Hi ...,恭喜你配置成功。
3.更多github指南
http://www.worldhello.net/gotgithub/index.html
http://www.cnblogs.com/fnng/archive/2011/08/25/2153807.html