This commit is contained in:
Toshiyuki Kawanishi 2010-11-19 07:06:12 -08:00
parent e2c686bd38
commit bdbe932bc9

10
git-now.el Normal file
View file

@ -0,0 +1,10 @@
;;; git-now.el - Call "git now" command
(provide 'git-now)
(defun now ()
(interactive)
(call-process "git" nil "*git now*" nil "now")
(pop-to-buffer "*git now*" t nil)
(other-window -1)
(message "git now!"))