@aescling What??
Then how am I supposed to tell Git to ignore my Vim .swp files?
@vaporeon_ dump git add -A and the like and learn the magic of git add -p
@vaporeon_ to make a habit of adding files, and even more pawerfully, specific changes deliberately
@aescling I probably should look into git add -p at some point, if I ever care about having a proper commit history where each commit is a particular change or set of changes...
@aescling It sure is easier to add files deliberately when git status doesn't show me a lot of files that I don't care about, such as compiled binaries and Vim .swp files. And that's why I add those to .gitignore, so that git status only shows the status that I actually care about!
@vaporeon_ the latter is what
git add -p(that is,--patch) is designed to make pawsible to do