From: Silvio Rhatto Date: Sat, 22 Feb 2014 19:01:56 +0000 (-0300) Subject: Minor fix at commit script X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=1d959221a36bbd159196915a984e7fa9502f44b9;p=scripts.git Minor fix at commit script --- diff --git a/commit b/commit index edf0271..d55c8e6 100755 --- a/commit +++ b/commit @@ -120,7 +120,7 @@ function git_user { # Commit changes function git_commit { # Remove '--config' from args, otherwise it goes to the commit log - params="`echo $* | sed -e 's/--commit//'`" + params="`echo $* | sed -e 's/--config//'`" git commit -a -m "$params" }