Last active
November 10, 2023 22:16
-
-
Save anzz1/82f6642a33d4a8e392d969d95a9a20b3 to your computer and use it in GitHub Desktop.
.gitignore
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
# Git | |
!/**/.gitkeep | |
!/**/.keep | |
# Object files | |
*.d | |
*.o | |
*.ko | |
*.obj | |
*.elf | |
# Linker output | |
*.ilk | |
*.map | |
*.exp | |
# Precompiled Headers | |
*.gch | |
*.pch | |
# Libraries | |
*.lib | |
*.a | |
*.la | |
*.lo | |
# Shared objects (inc. Windows DLLs) | |
*.dll | |
*.so | |
*.so.* | |
*.dylib | |
# Executables | |
*.exe | |
*.out | |
*.app | |
*.i*86 | |
*.x86_64 | |
# Debug files | |
*.dSYM/ | |
*.su | |
*.idb | |
*.pdb | |
*.id[0-9] | |
*.nam | |
*.til | |
# OS crap | |
.DS_Store | |
.DS_Store? | |
Thumbs.db | |
# Other crap | |
*.aps | |
.vscode | |
.vagrant | |
################ | |
# This repo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment