For git-svn repositories, 'f' runs git svn fetch in addition to remote update.

This commit is contained in:
John Wiegley 2009-02-11 03:26:22 -04:00 committed by Marius Vollmer
parent 743987a30d
commit efdd97b0b0

View file

@ -1974,7 +1974,9 @@ in log buffer."
(defun magit-remote-update ()
(interactive)
(magit-run-async magit-git-executable "remote" "update"))
(magit-run-async magit-git-executable "remote" "update")
(if (magit-svn-enabled)
(magit-run-async magit-git-executable "svn" "fetch")))
(defun magit-pull ()
(interactive)