From 1e11256c4d00895b0cd9069362de226a48574771 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Fri, 8 Apr 2016 03:42:12 +0100 Subject: [PATCH] Add a global gitignore --- bootstrap.sh | 1 + gitignore | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 gitignore diff --git a/bootstrap.sh b/bootstrap.sh index 43e18c4..e69222e 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -5,6 +5,7 @@ BASEDIR=$(pwd) # ln the various files test -L $HOME/.curlrc || ln -f -s $BASEDIR/curlrc $HOME/.curlrc +test -L $HOME/.gitignore || ln -f -s $BASEDIR/gitignore $HOME/.gitignore test -L $HOME/.hushlogin || ln -f -s $BASEDIR/hushlogin $HOME/.hushlogin test -L $HOME/.zshrc || ln -f -s $BASEDIR/zshrc $HOME/.zshrc diff --git a/gitignore b/gitignore new file mode 100644 index 0000000..93965b6 --- /dev/null +++ b/gitignore @@ -0,0 +1,14 @@ +# Compiled Python files +*.pyc + +# Folder view configuration files +.DS_Store +Desktop.ini + +# Thumbnail cache files +._* +Thumbs.db + +# Files that might appear on external disks +.Spotlight-V100 +.Trashes