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
).
echo '~*' >> .gitignore
This will append the needed entry.
Else edit the .gitignore
file manually and add ~*
on a new line.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With