mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
12 lines
172 B
Bash
Executable File
12 lines
172 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
# Add all and commit to git.
|
|
|
|
function gma() {
|
|
[ -z "$1" ] \
|
|
&& echo "usage: gma <commit-message>" \
|
|
&& return 1
|
|
|
|
git add . && git commit -m "$1"
|
|
}
|