10 lines
217 B
Plaintext
Executable File
10 lines
217 B
Plaintext
Executable File
|
|
if [ -z "$(cat "$1" | grep -E '(^fix:)|(^feature:)|(^up$)|^Merge branch .+$')" ] ; then
|
|
echo ""
|
|
echo respecte le format de commit ❤
|
|
echo " fix: xxx"
|
|
echo " feature: xxx"
|
|
echo ""
|
|
exit 1
|
|
fi
|