2
My . gitignore keeps displaying the folder and some files. I’d like to ignore them all at once. I left him like this
ignore
/*
*
/*/
*/*
*.*
.*
!.gitignore
Not Ignore
#plugins/*
!plugins/Indicadores/
!plugins/Base/
2
My . gitignore keeps displaying the folder and some files. I’d like to ignore them all at once. I left him like this
/*
*
/*/
*/*
*.*
.*
!.gitignore
#plugins/*
!plugins/Indicadores/
!plugins/Base/
1
If you’ve committed files/folders that you don’t want, put them in .gitignore
will not remove them. If this is the case:
.gitignore
and commit.1
Just put the name of the folder or file with extension:
/node_modules
/public/hot
/public/storage
/storage/*.key
/vendor
not ignore will normally show, as the name says.
Browser other questions tagged git
You are not signed in. Login or sign up in order to post.