diff options
-rw-r--r-- | lisp/init-git.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/init-git.el b/lisp/init-git.el index 3c84931..7b749c2 100644 --- a/lisp/init-git.el +++ b/lisp/init-git.el @@ -21,7 +21,9 @@ (defun km/magit-auto-commit () "Commit all changes with \"auto\" commit message. -Useful for non-source code repos (e.g., Org mode note files)." +This can be useful for non-source code repos (e.g., Org mode note +files) or commiting incomplete changes that will be extended into +a proper commit." (interactive) (magit-run-git "commit" "--all" "--message=auto")) |