Skip to content

Instantly share code, notes, and snippets.

@Hafiz-Waleed-Hussain
Created March 18, 2018 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hafiz-Waleed-Hussain/159928ce7d0901a3f22f53830143da65 to your computer and use it in GitHub Desktop.
Save Hafiz-Waleed-Hussain/159928ce7d0901a3f22f53830143da65 to your computer and use it in GitHub Desktop.
Commit Message Hook Script
#!/bin/sh
msg=`head -n 1 $1`
if echo $msg | egrep -qv '(Android-\d{3,4}.{20,})'; then
echo "[Message Format] Your message is not formatted correctly. Correct message format\n
#Ticket Number - Minimum 20 or more Character \n
like #Android-123 Bug fixed for login issue"
exit 1;
fi
@Hafiz-Waleed-Hussain
Copy link
Author

Its mean commit hook is working but logic has some issue. Can you try to add simple validation As a minimum 5 characters required?

@kenchoong
Copy link

ok let me try it later and get back to you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment