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
mkdir -p ~/Downloads/src | |
cd ~/Downloads/src | |
# Set options since we don't have GNU gettext installed | |
export TCL_PATH=`which tclsh` | |
export NO_MSGFMT=1 | |
export GIT_VERSION='1.6.0.2' | |
# Get and install git | |
curl -O "http://kernel.org/pub/software/scm/git/git-$GIT_VERSION.tar.bz2" |
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
# Source: http://seventytwo.co.uk/posts/how-to-reach-enlightenment-and-get-your-site-indexed-by-search-engines | |
# Switch output on or off | |
OUTPUT = true | |
# Sitemap URL | |
SITEMAP_URL = 'http://www.example.com/sitemap.xml' | |
# Search engine pings configuration | |
pings_config = [ |
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
Here's a handy snippet for touching a .gitignore file in all empty | |
directories except the .git folder itself: | |
find . \( -type d -empty \) -and \( -not -regex ./\.git.* \) -exec | |
touch {}/.gitignore \; |
NewerOlder