Add bin directory for custom scripts

This commit is contained in:
Oliver Davies 2019-10-11 20:16:10 +01:00
parent 8988c2a31f
commit ceb01ff80c
3 changed files with 9 additions and 1 deletions

7
bin/git-cm Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
if [[ $# > 0 ]]; then
git commit -m "$@"
else
git commit -v
fi