[M] Update include folder structure

This commit is contained in:
Hykilpikonna
2021-09-16 21:59:50 -04:00
parent b6d88caf6c
commit 627eb5c191
5 changed files with 4 additions and 11 deletions
+16
View File
@@ -0,0 +1,16 @@
# Git commit wrapper
commit() {
msg="$@"
git commit -m "$msg"
}
commitall() {
git add .
commit "$@"
}
alias commita="commitall"
compush() {
commitall "$@"
git push
}