Skip to content

Commit 1ca4b20

Browse files
authored
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
1 parent 0eeed18 commit 1ca4b20

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

C.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
*.obj
88
*.elf
99

10+
# Linker output
11+
*.ilk
12+
*.map
13+
*.exp
14+
1015
# Precompiled Headers
1116
*.gch
1217
*.pch
@@ -34,3 +39,5 @@
3439
# Debug files
3540
*.dSYM/
3641
*.su
42+
*.idb
43+
*.pdb

0 commit comments

Comments
 (0)