I don't use NETBEANS, but StackOverflow should be your friend... ;)
Go to Tools -> Options -> Miscellaneous -> Files .
The property, Ignore Files has this as a default:
^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!htaccess$).*$
Remove the last portion: .*
Netbeans hides dot files & directories.
Thanks mikebarwick!
It did show the .env file after the modification. But it was showing the .gitignore and .gitattributes files before the modification too. Just a little curious...
But it was showing the .gitignore and .gitattributes files before the modification too.
that's because the original Ignored File Pattern is:
^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!(htaccess|git.+|hgignore)$).*$
which excludes .git* files
you can delete the complete line, if you want to. That makes you see all files.
I just added env after hgignore to keep everything else the same
^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!(htaccess|git.+|hgignore|env)$).*$
I would suggest
^(CVS|SCCS|vssver.?.scc|#.#|%. %|_svn)$|~$|^.(?!(htaccess|git.+|hgignore|env|env.+)$).*$
it also keep everything with env. prefix eg: env.example, env.production
Please sign in or create an account to participate in this conversation.