From 1ca4b201e03711e6e31c393cb73c5c43be1b040c Mon Sep 17 00:00:00 2001 From: Arvid Gerstmann Date: Tue, 6 Sep 2016 06:56:04 +0200 Subject: [PATCH] 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 --- C.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/C.gitignore b/C.gitignore index 7a065c70..6c0ea0c5 100644 --- a/C.gitignore +++ b/C.gitignore @@ -7,6 +7,11 @@ *.obj *.elf +# Linker output +*.ilk +*.map +*.exp + # Precompiled Headers *.gch *.pch @@ -34,3 +39,5 @@ # Debug files *.dSYM/ *.su +*.idb +*.pdb