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