diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-05-12 23:26:22 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-05-12 23:26:22 -0400 |
commit | 8f31af55544adbf7530f1581a828856a68c8d1b6 (patch) | |
tree | dd34accd0f43300e5f23f897e9609082815381a0 | |
parent | 41fc832d2a63081bde8e65f15c1803855b6e48f6 (diff) |
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)
-rw-r--r-- | .git.info.exclude | 43 |
1 files changed, 43 insertions, 0 deletions
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 |