7 Jul 2011, 11:43pm
Posts:
by

leave a comment

Changing GitHub Issue State in Git Commit Message

Changing issue state in git commit message for Github issues

fixes #xxx
fixed #xxx
fix #xxx
closes #xxx
close #xxx
closed #xxx

Example

git commit -am'complete bug fix closes #123'

Email Regex

Regular Expression that Matches Email Addresses:

/\b[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}\b/