dotfiles/bin/git-cm

8 lines
88 B
Plaintext
Raw Normal View History

2019-10-11 19:16:10 +00:00
#!/usr/bin/env bash
if [[ $# > 0 ]]; then
git commit -m "$@"
else
git commit -v
fi