Skip to content

Instantly share code, notes, and snippets.

@lucianobragaweb
Last active May 2, 2020 13:16
Show Gist options
  • Save lucianobragaweb/11f2cc6d199d3dd224fb72adcb504ad8 to your computer and use it in GitHub Desktop.
Save lucianobragaweb/11f2cc6d199d3dd224fb72adcb504ad8 to your computer and use it in GitHub Desktop.
.gitignore for Pascal project files - This ignore executable/binary files from your project root and directories
# Ignore all
*
# Unignore all with extensions
!*.*
# Ignore all with extension .o
*.o
# Rules for dirs
# Unignore dirs
!*/
# Ignore all files in dir
*/*
# Unignore all with extensions on dir
!*/*.*
# Ignore all with extension .o
*/*.o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment