This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
## fork from http://qiita.com/uasi/items/a340bb487ec07caac799 | |
if [ -z "`git config --local user.name`" ]; then | |
echo "fatal: user.name is not set locally" | |
exit 1 | |
fi | |
if [ -z "`git config --local user.email`" ]; then | |
echo "fatal: user.email is not set locally" | |
exit 1 |
NewerOlder