can git check for .gitignore inside folder code example
Example 1: how to git ignore a file
git config --global core.excludesfile ~/.gitignore_global
Example 2: git ignore content of a folder
# exclude everything
somefolder/*
# exception to the rule
!somefolder/.gitkeep