We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a9538b commit c7b7debCopy full SHA for c7b7deb
commit
@@ -8,7 +8,7 @@ if [ -z "${1:-}" ] || [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
8
echo " commit MESSAGE"
9
echo
10
echo "Example:"
11
- echo " commit \"Initial commit\""
+ echo " commit \"Hello world!\""
12
exit 1
13
fi
14
@@ -32,7 +32,7 @@ for branch in "${IGNORED_BRANCHES[@]}"; do
32
33
done
34
35
-if [ "$IS_IGNORED" == false ];then
+if [ "$IS_IGNORED" == false ]; then
36
# Edit your config here
37
git commit -m "$CURRENT_BRANCH: $1"
38
else
0 commit comments