From ae0d66df85f9cbbad1613f6a66837c00c56c0254 Mon Sep 17 00:00:00 2001 From: Ben Alman Date: Sat, 25 Oct 2014 13:12:01 -0400 Subject: [PATCH] Adjust and comment .gitignore file. --- .gitignore | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index d56bb93bc0..ccd074758e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,19 @@ -caches/ -backups/ -link/.ssh/authorized_keys -link/.ssh/id_* -link/.ssh/known_hosts -link/.vim/plugged -link/.rbenv/shims/ -link/.rbenv/versions/ -link/.rbenv/version +# Lots of junk goes in here. +/caches/ +/backups/ + +# Top secret stuff! +/link/.ssh/authorized_keys +/link/.ssh/id_* +/link/.ssh/known_hosts + +# Don't commit Vim plugins, vim-plug will install them. +/link/.vim/plugged + +# Don't commit rbenv temp files. +/link/.rbenv/shims/ +/link/.rbenv/versions/ +/link/.rbenv/version + +# Ignore any file with LOCAL in the name (good for per-machine vars/functions) *LOCAL*