Error with Package Control SublimeText 2

2

I have the following problem:

I installed the Package Control plugin in the SublimeText 2 Editor to be able to install the other plugins via the shortcut in the sublime itself, however every time I start the Editor it appears the following error:

After I press OK, everything works fine and I can even use the plugin.

Does anyone know how to solve this problem?

OS: Windows 8

    
asked by anonymous 16.12.2013 / 17:01

1 answer

5

You will need to install Git , if you have not already installed it.

Then go to the Preferences > Package Settings > Package Control > Settings > User menu, and edit the file to add the git_binary item. Example of how it works:

{
    "installed_packages":
    [
        "Package Control"
    ],
    "git_binary": "C:\Program Files (x86)\Git\bin\git.exe"
}

Save and restart the editor.

Of course, if Git is installed in another directory, replace C:\Program Files (x86)\Git\bin\git.exe with the correct path.

    
16.12.2013 / 17:05