Now I did try to search for this, but searching for punctuation is often difficult. But equally I feel sure this would have been answered before so please point out any duplicate answers to this already if there are!
My quetsion is in a .gitignore
file is there any difference between:
.gitignore file 1:
ignore_this_folder/
.gitignore file 2:
ignore_this_folder/*
I think both will ignore anything within the folder ignore_this_folder
. Is there a "best practise"? is the *
useless in this case? or is there some subtle difference?