hi,
I use linux mint and the last dev version of sublime merge.
I tried to change the git_binary settings but it seems doesn’t work.
Like many people, I use sshfs and, unsurprisingly, git status is very slow.
I created a bash script that executes git commands remotely
like that
#!/bin/bash
ssh myserver.com "git $@"
in theory it works well.
If I look at the debugging information of sublime merge, I can see the git version of my server and the result of git statut from my server very fast.
So, why do I feel that the git status used to see the changes to commit in the interface is very slow and doesn’t use the git_binary path setting?
I hope you understand my problem, English is not my native language.