gornostal/Modific

Seeks git in /usr/bin/git which triggers an error on my OSX installation

Closed this issue · 4 comments

Any way to change the path to git?

The correct location in my case is

/usr/local/bin/git

@andreimoment, Yes. It's described in README.
You can change path in Modific -> Settings User.

I am asking here because nothing there resembles a path. Could you please
provide an example?
On Wed, Aug 19, 2015 at 10:46 PM Aleksandr Gornostal <
notifications@github.com> wrote:

Closed #97 #97.


Reply to this email directly or view it on GitHub
#97 (comment).

Here is an example.

{
    "vcs": [
        {"name": "git", "dir": ".git", "cmd": "/usr/local/bin/git"},
        {"name": "svn", "dir": ".svn", "cmd": "svn"},
        {"name": "bzr", "dir": ".bzr", "cmd": "bzr"},
        {"name": "hg",  "dir": ".hg",  "cmd": "hg"},
        {"name": "tf",  "dir": "$tf",  "cmd": "C:/Program Files (x86)/Microsoft Visual Studio 11.0/Common7/IDE/TF.exe"}
    ]
}

Thank you! I guess I was confused because in the main example none of the values for "cmd" looked like a path to a file... Until I noticed the Windows entry :)