My text editor creates swap files that start with a tilde. I accidentally checked on of these into git. How do I tell git to ignore any files like this anywhere in my project tree?
So I had
/folder/another/file.txt
/folder/another/~file.txt
I want ~file.txt
to be ignored by git.
Just use a .gitignore file:
echo '~*' >> .gitignore
Alternatively, you can also write this line to .git/info/exclude
which is a project-wide local ignore file (which you obviously cannot check in, as you can do with .gitignore
).