소스 검색

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
pull/2093/head
Arvid Gerstmann 7 년 전
부모
커밋
1ca4b201e0
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7
    0
      C.gitignore

+ 7
- 0
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

Loading…
취소
저장