[F] Fix commit argument passing

This commit is contained in:
Hykilpikonna
2021-08-24 18:23:45 -04:00
committed by GitHub
parent b3bdb15e47
commit 20309261d4
+3 -3
View File
@@ -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
}