SyntaxFix
Write A Post
Hire A Developer
Questions
If you want to put a .gitignore file at the top level and make it work for any folder below it use /**/.
/**/
E.g. to ignore all *.map files in a /src/main/ folder and sub-folders use:
*.map
/src/main/
/src/main/**/*.map