[F] Fix commit argument passing
This commit is contained in:
+3
-3
@@ -34,17 +34,17 @@ lisp() {
|
||||
|
||||
# Git commit wrapper
|
||||
commit() {
|
||||
git commit -m "$1"
|
||||
git commit -m "$@"
|
||||
}
|
||||
|
||||
commitall() {
|
||||
git add .
|
||||
commit $1
|
||||
commit "$@"
|
||||
}
|
||||
alias commita="commitall"
|
||||
|
||||
compush() {
|
||||
commitall $1
|
||||
commitall "$@"
|
||||
git push
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user