Created
October 23, 2016 14:18
-
-
Save sdeluce/a6ca95d8e37667500b6d0ac2a5a079c2 to your computer and use it in GitHub Desktop.
Gitignore pour ptojets en C
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
| # Intellij | |
| .idea/ | |
| *.iml | |
| *.iws | |
| .idea/*.?ml | |
| # Mac | |
| .DS_Store | |
| # Prerequisites | |
| *.d | |
| # Object files | |
| *.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 | |
| *.hex | |
| # Debug files | |
| *.dSYM/ | |
| *.su | |
| *.idb | |
| *.pdb | |
| # Kernel Module Compile Results | |
| *.mod* | |
| *.cmd | |
| modules.order | |
| Module.symvers | |
| Mkfile.old | |
| dkms.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment