mirror of
https://github.com/github/gitignore
synced 2024-11-22 11:44:21 +01:00
Extend C to ignore Visual Studio artifacts
Visual Studio creates a few artifacts which weren't ignored before, mainly .idb, .pdb and .ilk files which are either created by CL.EXE or by LINK.EXE were added to the gitignore for Windows projects. A little more information can be found here on Microsoft's documentation: https://msdn.microsoft.com/en-us/library/3awe4781.aspx
This commit is contained in:
parent
0eeed18a54
commit
1ca4b201e0
@ -7,6 +7,11 @@
|
|||||||
*.obj
|
*.obj
|
||||||
*.elf
|
*.elf
|
||||||
|
|
||||||
|
# Linker output
|
||||||
|
*.ilk
|
||||||
|
*.map
|
||||||
|
*.exp
|
||||||
|
|
||||||
# Precompiled Headers
|
# Precompiled Headers
|
||||||
*.gch
|
*.gch
|
||||||
*.pch
|
*.pch
|
||||||
@ -34,3 +39,5 @@
|
|||||||
# Debug files
|
# Debug files
|
||||||
*.dSYM/
|
*.dSYM/
|
||||||
*.su
|
*.su
|
||||||
|
*.idb
|
||||||
|
*.pdb
|
||||||
|
Loading…
Reference in New Issue
Block a user