INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
ideally one sentence >
| #!/usr/bin/env bash | |
| if [ ! -x .git/hooks/commit-msg ] || [ ! -f .git/hooks/commit-msg ] || ! cmp ./hooks/commit-msg.sh .git/hooks/commit-msg | |
| then | |
| echo -e "\033[33m Setting Up Git commit Hook..." | |
| mkdir -p .git/hooks/ | |
| cp ./hooks/commit-msg.sh .git/hooks/commit-msg | |
| chmod +x .git/hooks/commit-msg | |
| echo -e "\033[32m Done" | |
| echo -e "\033[33m You can make commit now." |
| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| import smtplib | |
| from datetime import datetime | |
| def noticeEMail(starttime, usr, psw, fromaddr, toaddr): | |
| """ | |
| Sends an email message through GMail once the script is completed. |