how to ignore every file in git code example
Example: git ignore content of a folder
# exclude everything
somefolder/*
# exception to the rule
!somefolder/.gitkeep
# exclude everything
somefolder/*
# exception to the rule
!somefolder/.gitkeep