From adff240ffec269cbe8a48729fbed4b30960b7015 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Thu, 31 Oct 2013 01:20:37 -0400 Subject: Function for magit auto commit For a few repos where commits often are not accompanied by a meaningful message --- init/km-func.el | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'init') diff --git a/init/km-func.el b/init/km-func.el index 700bb42..4043cb9 100644 --- a/init/km-func.el +++ b/init/km-func.el @@ -173,3 +173,12 @@ KILLARG." (eval-after-load "magit" '(define-key magit-status-mode-map (kbd "C-c C-a") 'km/magit-just-amend)) + +(defun km/magit-auto-commit () + (interactive) + (save-window-excursion + (magit-with-refresh + (shell-command "git --no-pager commit --all --message=auto")))) + +(eval-after-load "magit" + '(define-key magit-status-mode-map (kbd "C-c C-u") 'km/magit-auto-commit)) -- cgit v1.2.3