git ignore all files 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
# Create .gitignore inside the target folder and add the content below
# Ignore everything in this directory
*
# Except this file
!.gitignore