win10配置git
2022-03-30T14:41:00+08:00
再见理想
在window上面安装好git之后,默认只能使用http和https协议的仓库地址,需要进行如下配置才能够支持使用git和ssh协议的仓库地址。
生成密钥
ssh-keygen -t rsa
添加密钥对应的公钥到服务器
略
启动ssh-agent
Get-Service ssh-agent | Set-Service -StartupType Automatic -PassThru | Start-Service
添加密钥到agent
ssh-add ~/.ssh/id_rsa
配置git
git config --global core.sshCommand C:/Windows/System32/OpenSSH/ssh.exe