From 8f31af55544adbf7530f1581a828856a68c8d1b6 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 12 May 2011 23:26:22 -0400 Subject: Link .git.info.exclude to .git/info/exclude, so that the .gitignore can be tracked (I can't just use .gitignore because that would be a global file) --- .git.info.exclude | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .git.info.exclude diff --git a/.git.info.exclude b/.git.info.exclude new file mode 100644 index 0000000..eeda558 --- /dev/null +++ b/.git.info.exclude @@ -0,0 +1,43 @@ +# Defualt to ignoring all files +* + +# Except dotfiles +!.* +!.*/* + +# Ignore these for privacy +.ssh/* +.netrc + +# Ignore temp/log/history files +*.log +*.cache +*.tmp +*.lock +*~ +.#* +*_history +*authority +.cache/* + +# Ignore these special-purpose cache/temp files +.xsession-errors* +.fontconfig/*cache* +.camel_certs/* +.kde/tmp-* +.kde/cache-* +.sudo_as_admin_successful +.lesshst +.gconfd/saved_state +.esd_auth +.recently-used.xbel* + +# Include these non-dotfiles +!bin +!bin/v-www-browser +!bin/v-editor +!bin/editor + +!share +!share/nano +!share/nano/*.nanorc -- cgit v1.2.3-54-g00ecf