这让我发疯了..在其他地方找到了同样的问题......但是我无法在我的Windows 8.1上找到这个工作。
将C:\ Git \ bin添加到我的Path环境变量中。
还尝试在sublime Git插件用户设置中更新git_command var ......但它仍然出现了!...任何想法都会非常感激...谢谢
这是我尝试将bin目录添加到git_command属性。
{
// if present, use this command instead of plain "git"
// e.g. "/Users/kemayo/bin/git" or "C:\bin\git.exe"
"git_command": "C:/Git/git.exe"
}
感谢您寻找
答案 0 :(得分:1)
我认为你只是添加了错误的路径。它应该是:
{
// if present, use this command instead of plain "git"
// e.g. "/Users/kemayo/bin/git" or "C:\bin\git.exe"
"git_command": "C:/Git/bin/git.exe"
}
答案 1 :(得分:1)
在"首选项>套餐设置> Git Savvy>用户"添加以下内容仅确保它指向您的git.exe所在的位置。确保您使用' /'而不是' \在你的文件路径中。
{
"git_path": "C:/Program Files (x86)/Git/bin/git.exe"
}
答案 2 :(得分:0)
{
"git_binary": "C:/Program Files (x86)/Git/bin/git.exe"
}
是我的工作。不再有关于无法找到Git Binary的警告。