summaryrefslogtreecommitdiff
path: root/lisp/init-git.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-10-18 00:30:02 -0400
committerKyle Meyer <kyle@kyleam.com>2014-10-18 00:30:02 -0400
commit6fcadca62088ae73a8ae41731c52dc59f214e6dc (patch)
tree478ec7a29cfa3817f7d9ff741304e1fd170212de /lisp/init-git.el
parent71f099b9728fdd2f0507ba3e7471ea2deb2dac04 (diff)
downloademacs.d-6fcadca62088ae73a8ae41731c52dc59f214e6dc.tar.gz
Expand magit-auto-commit docstring
Diffstat (limited to 'lisp/init-git.el')
-rw-r--r--lisp/init-git.el4
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"))