For git-svn repositories, 'f' runs git svn fetch in addition to remote update.
This commit is contained in:
parent
743987a30d
commit
efdd97b0b0
1 changed files with 3 additions and 1 deletions
4
magit.el
4
magit.el
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue