My .gitignore continues displaying the folder and some files. I'd like to ignore them all at once. I left it like this
ignore
/*
*
/*/
*/*
*.*
.*
!.gitignore
Not Ignore
#plugins/*
!plugins/Indicadores/
!plugins/Base/
My .gitignore continues displaying the folder and some files. I'd like to ignore them all at once. I left it like this
/*
*
/*/
*/*
*.*
.*
!.gitignore
#plugins/*
!plugins/Indicadores/
!plugins/Base/
Just put the name of the folder or file with extension:
/node_modules
/public/hot
/public/storage
/storage/*.key
/vendor
O not ignore will show normally, as the name itself says.
If you've already committed files / folders you do not want, putting them in .gitignore
will not remove them. If this is the case:
.gitignore
and commit.