Last active
May 2, 2020 13:16
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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