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
git config --global user.name "Danny Graham" | |
git config --global user.email [email protected] | |
# Deprecated in favor of ... | |
#git config --global color.diff always | |
#git config --global color.status always | |
#git config --global color.branch always | |
git config --global color.ui auto | |
git config --global color.interactive auto |
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 | |
# Creates self-signed SSL certs | |
# Creates Apache vhost config | |
# | |
# Targets Ubuntu/Debian based distros | |
# Forked from http://gist.github.com/275207 | |
# !!! Important !!! |