Git TortoiseGit SSH设置

Git TortoiseGit SSH设置

http://www.cnblogs.com/ChenRihe/p/Git_TortoiseGit_SSH.html

TortoiseGit默认的SSH客户端
C:Program FilesTortoiseGitinTortoiseGitPlink.exe

改成win下git默认的

D:Program FilesGitusrinssh.exe

Writing objects速度慢git config 

  1.git bash中执行  git config --global http.postBuffer 524288000//设置缓冲区

1.如果没配置过用户名和密码(配过也再来一次咯):

git config --global user.name "John Doe"
git config --global user.email "johndoe@doebrothers.com"

ssh-keygen –t rsa –C "johndoe@doebrothers.com"

clip < ~/.ssh/id_rsa.pub  #把SSH key复制到系统粘贴板

原文地址:https://www.cnblogs.com/bluestorm/p/6149123.html