TortoiseGit下载列表
http://download.tortoisegit.org/tgit/

当前最新版本为1.8.7.0,这里是32位系统安装包:
http://download.tortoisegit.org/tgit/1.8.7.0/TortoiseGit-1.8.7.0-32bit.msi

msysgit 下载地址
http://msysgit.googlecode.com/files/msysGit-fullinstall-1.8.5.2-preview20131230.exe

安装顺序:首先安装msysgit;然后安装TortoiseGit。

桌面右键菜单TortoiseGit,打开设置菜单

设置Git Path

设置环境变量path增加/Path/To/msysgit/bin和/Path/To/mingw/bin

这里是C:msysgitmsysgitin和 C:msysgitmsysgitmingwin,用分号隔开。

在命令行启动git, 如果出现libiconv-2.dll丢失
将C:msysgitmsysgitmingwin下的libiconv-2.dll复制到C:msysgitmsysgitin

然后用ssh-keygen生成密钥对
ssh-keygen -t rsa -C “falcon_chen@qq.com”

把私钥id_rsa放在C:msysgitmsysgit.ssh,不是意想中的windows用户家目录:C:UsersAdministrator.ssh

把公钥id_rsa.pub 内容复制,并到https://github.com/settings/ssh里添加

执行:
ssh git@github.com 如果成功将显示你的github的用户名

如果提示权限错误,可以尝试使用-i 参数指定私钥位置再试一下,或者也有可能是复制公钥到github时混入了空格之类

提示缺少*.dll时 直接从安装目录/mingw/lib中复制msysgit/bin里即可

克隆github项目Bonfire
git clone https://github.com/falconchen/Bonfire.git

- EOF -