Created
January 6, 2013 21:27
-
-
Save danlamanna/4470368 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defadvice magit-status(after enable-magit-svn-mode activate) | |
"Enable `magit-svn-mode' when opening magit via `magit-status' | |
and is a git svn repository." | |
(require 'magit-svn) | |
(when (magit-svn-get-ref-info) | |
(turn-on-magit-svn))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment