我已经Git-1.8.3-preview20130601.exe
从https://code.google.com/p/msysgit/downloads/list?q=full+installer+official+git安装了 Git 版本。我还安装了 PoshGit,并且正在使用 Windows PowerShell。
当我启动 PowerShell 我得到
警告:找不到 ssh-agent
我能够进入ssh-agent.exe
命令行并启动 ssh 代理。我还能够执行所有 Git 命令,所以我的 Git 路径可能是正确的。
我一直在按照本指南让 Git 在 Windows 中正常工作。
我已经尝试过他将其添加$env:path += ";" + (Get-Item "Env:ProgramFiles(x86)").Value + "\Git\bin"
到我的 Microsoft.PowerShell_profile.ps1 文件中的建议,但没有奏效。它没有任何区别。我正在寻找该解决方案以外的建议。
为了完整起见,这是我的 Microsoft.PowerShell_profile.ps1 文件
# Load posh-git example profile
. 'C:\Users\________\code\posh-git\profile.example.ps1'
$env:path += ";" + (Get-Item "Env:ProgramFiles(x86)").Value + "\Git\bin"