init
This commit is contained in:
10
.local/bin/git-ci
Executable file
10
.local/bin/git-ci
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
if [ $# -eq 0 ]; then
|
||||
git commit -v
|
||||
else
|
||||
if [ "$1" = "--amend" ]; then
|
||||
git commit -v --amend
|
||||
else
|
||||
git commit -m "$*"
|
||||
fi
|
||||
fi
|
||||
Reference in New Issue
Block a user