From e14248fdcb364b10091b159ec37df5f998518bce Mon Sep 17 00:00:00 2001 From: Bill Niblock Date: Fri, 1 May 2015 11:17:25 -0400 Subject: [PATCH] Add gitignore file --- README.md | 2 +- git/gitignore | 53 +++++++++++++++++++++++++++++++++++++++++++++++ install.conf.yaml | 1 + 3 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 git/gitignore diff --git a/README.md b/README.md index c860903..7721db0 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ To integrate *all* dotfiles in this repo: ##Applications Configured * Vim [ vim/vim/ => ~/.vim ][ vim/vimrc => ~/.vimrc ] -* Git [ git/gitconfig => ~/.gitconfig ] +* Git [ git/gitconfig => ~/.gitconfig ][ git/gitignore => ~/.gitignore ] ##To-Do * [ ] irssi config files diff --git a/git/gitignore b/git/gitignore new file mode 100644 index 0000000..77e86ab --- /dev/null +++ b/git/gitignore @@ -0,0 +1,53 @@ +# Global gitignore file +# bill_niblock@yahoo.com + +## +# Stolen from octocat: https://gist.github.com/octocat/9257657 +## + +# Compiled source # +################### +*.com +*.class +*.dll +*.exe +*.o +*.so + +# Packages # +############ +# it's better to unpack these files and commit the raw source +# git has its own built in compression methods +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip + +# Logs and databases # +###################### +*.log +*.sql +*.sqlite + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +## +# Additions +## + +# Vim Related # +############### +*.swp +.netrwhist diff --git a/install.conf.yaml b/install.conf.yaml index c67b594..03ae374 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -5,6 +5,7 @@ ~/.vim: vim/vim/ ~/.vimrc: vim/vimrc ~/.gitconfig: git/gitconfig + ~/.gitignore: git/gitignore - shell: - [git submodule update --init --recursive, Installing submodules]