I'm using emacs over sshfs and a git repository. I enjoy using the git command line and so for this project I do not need vc-git enabled. How do I prevent the loading of vc-git by a .emacs command?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
This should disable the backend:
you might need a
to get the timing right. |
|||||
|
|
Remove git from the list of backends handled by vc-mode:
or remove all source control hooks:
|
||||
|
|
I'd also really recommend magit (a different emacs git mode.) I, too, prefer command line for everything but this one's really well done and allows you to code more and "git" less. Particularly staging and unstaging code / seeing a diff of your changes before sending them out, viewing stashes, and pulling / pushing while staying inside of emacs is great. |
|||
|
|
|
Or you can disable the entire version control thing in emacs
worked for me. |
||||
|
|
