Setting up .gitignore for a new Python project

The quick way…

BASE_URL=https://raw.github.com/github/gitignore/master
for X in Global/OSX.gitignore \
         Global/TextMate.gitignore \
         Python.gitignore; do 
echo "## $BASE_URL/$X ##"
curl -s $BASE_URL/$X
echo
done >> .gitignore

1 note

Show

  1. s1mn posted this