From fb735d276d146e1f572f4ae4fa82481a8129bcd5 Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Sat, 29 Oct 2011 17:58:25 -0500 Subject: [PATCH] Add .gitignore; add .gitignore_global support --- .gitconfig | 1 + .gitignore | 5 +++++ .gitignore_global | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 .gitignore create mode 100644 .gitignore_global diff --git a/.gitconfig b/.gitconfig index a81297e..c7a4aa0 100644 --- a/.gitconfig +++ b/.gitconfig @@ -24,6 +24,7 @@ [core] filemode = true whitespace = space-before-tab, trailing-space + excludesfile = ~/.gitignore_global [diff] renames = copies diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e79647b --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.bash_history +.keychain/ +.lesshst +.ssh/ +.viminfo diff --git a/.gitignore_global b/.gitignore_global new file mode 100644 index 0000000..6aa5cad --- /dev/null +++ b/.gitignore_global @@ -0,0 +1,34 @@ +# 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* +ehthumbs.db +Icon? +Thumbs.db -- 2.45.2