Git windows下配置

转载地址:http://blog.csdn.net/zhwei_87/article/details/17454353
git在windows上配置ssh公钥
 
一 .设置git的user name和email:
 
$ git config --global user.name "xxxxx"
 
$ git config --global user.email "[email protected]"
 
二 生成密钥
 
ssh-keygen -t rsa -C “[email protected]
 
 按3个回车,密码为空。(不要输密码)
 
然后到.ssh下面将id_rsa.pub里的内容复制出来粘贴到github个人中心的账户设置的ssh key里面
gerrit服务器下个人账户的setting,SSH Public Keys栏Add Key,复制公钥,配置remote,再push
 
git for windows 下载地址:
 
http://code.google.com/p/msysgit/downloads/list

你可能感兴趣的:(Git windows下配置)