Reputation: 163
This is driving me crazy.. Have found the same issue elsewhere... but I cannot get this work on my windows 8.1.
Added C:\Git\bin to my Path environment variable.
Also tried updating the git_command var in the sublime Git plugin user settings... But still it appears!... any ideas would be very much appreciated... thanks
Here is my attempt to add my bin dir to the git_command property.
{
// 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"
}
Thanks for looking
Upvotes: 0
Views: 4164
Reputation: 1936
In "Preferences > Package Settings > Git Savvy > User" add the following only ensure it is pointing to where ever your git.exe is. Make sure you are using '/' and not '\' in your file path.
{
"git_path": "C:/Program Files (x86)/Git/bin/git.exe"
}
Upvotes: 1
Reputation: 6957
I think you are just adding the incorrect path. It should be:
{
// 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"
}
Upvotes: 1