From 527cb54bb8fb338d1c96ba96eb5d670eb18e2ddf Mon Sep 17 00:00:00 2001 From: Deepak Mangla Date: Sun, 2 Sep 2018 17:10:18 +0530 Subject: [PATCH] Send changes from git status instead. --- send.plugin.zsh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/send.plugin.zsh b/send.plugin.zsh index 3452d86..66cd001 100644 --- a/send.plugin.zsh +++ b/send.plugin.zsh @@ -19,10 +19,8 @@ send() { if [ $# -eq 1 ]; then git commit -a -m "$1" else - git commit -a -m "I'm too lazy to write a commit message." + git commit -a -m "$(git status)" fi pull push } - -