From 2ee532a01db3fd45bef8b651626f7a65d59b57b7 Mon Sep 17 00:00:00 2001 From: Steve Purcell Date: Mon, 2 Feb 2009 15:23:31 +0100 Subject: [PATCH] Run git-svn dcommit and rebase asynchronously to avoid blocking the UI --- magit.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/magit.el b/magit.el index 033700df..4985ca55 100644 --- a/magit.el +++ b/magit.el @@ -1706,11 +1706,11 @@ in log buffer." (defun magit-svn-rebase () (interactive) - (magit-run "git" "svn" "rebase")) + (magit-run-async "git" "svn" "rebase")) (defun magit-svn-dcommit () (interactive) - (magit-run "git" "svn" "dcommit")) + (magit-run-async "git" "svn" "dcommit")) (defun magit-svn-enabled () (not (null (find "git-svn" (magit-list-interesting-revisions) :test 'equal))))