how to tell git to ignore a file in a directory code example
Example: git ignore all files within a directory
# Create .gitignore inside the target folder and add the content below
# Ignore everything in this directory
*
# Except this file
!.gitignore