In my .gitignore file I have
tmp/**/*
What files does it exclude? Will it exclude all tmp and files/folders under it?
My other question is, is this different from the following?
tmp/*
Edit:
Reason I ask is because I a have this
.vimbackup/**/*
but it is NOT ignoring a file like .vimbackup/.somebackup~
However, if I do
.vimbackup/*
it DOES ignore the file .vimbackup/.somebackup~
Seems kinda backwards to me