@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
@aescling I just use regular git add most of the time
But what's the point, what would it get me not to use the feature that specifically is there to prevent files from being added to the git repository to prevent files that I don't want to be added to the git repository from being added to the git repository?
@vaporeon_ the latter is what git add -p (that is, --patch) is designed to make pawsible to do
@aescling I probably should look into
git add -pat some point, if I ever care about having a proper commit history where each commit is a particular change or set of changes...