From 29a1b34947ca715adc26b5ab3f89b1648d6830c0 Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Wed, 9 Jun 2010 21:40:04 -0700 Subject: [PATCH] Make magit-run-git-async print out the command it's executing. This gives the user some immediate feedback when running a potentially long command, such as "git fetch" or "git push". --- magit.el | 1 + 1 file changed, 1 insertion(+) diff --git a/magit.el b/magit.el index 2904c42b..97176367 100644 --- a/magit.el +++ b/magit.el @@ -1410,6 +1410,7 @@ FUNC should leave point at the end of the modified region" nil nil nil nil input))) (defun magit-run-git-async (&rest args) + (message "Running %s %s" magit-git-executable (mapconcat 'identity args " ")) (magit-run* (append (cons magit-git-executable magit-git-standard-options) args)