aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-02-22 16:01:56 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-02-22 16:01:56 -0300
commit1d959221a36bbd159196915a984e7fa9502f44b9 (patch)
tree86f6d08a54b84770839a7504fa17dfa2cb0c941c
parentb7df083001c2fc15ab58ef89ea497a4a246ae2f7 (diff)
downloadscripts-1d959221a36bbd159196915a984e7fa9502f44b9.tar.gz
scripts-1d959221a36bbd159196915a984e7fa9502f44b9.tar.bz2
Minor fix at commit script
-rwxr-xr-xcommit2
1 files changed, 1 insertions, 1 deletions
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"
}