8 lines
88 B
Bash
Executable file
8 lines
88 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ $# > 0 ]]; then
|
|
git commit -m "$@"
|
|
else
|
|
git commit -v
|
|
fi
|