1
0
mirror of https://github.com/simh/simh.git synced 2026-05-05 15:33:34 +00:00

GIT: Use consistent gitignore across branches

This commit is contained in:
Mark Pizzolato
2017-03-14 04:04:48 -07:00
parent d031eb7476
commit 7e7c633bcc

82
.gitignore vendored
View File

@@ -1,33 +1,49 @@
.git-commit-id .git-commit-id
#ignore thumbnails created by windows #ignore thumbnails created by windows
Thumbs.db Thumbs.db
#Ignore files built by Visual Studio #ignore Desktop Services Store created by OSX
*.obj .DS_Store
*.exe #Ignore files built by Visual Studio
*.pdb *.obj
*.user # VAX/vmb.exe is not a generated file and should be in the repository
*.aps !VAX/vmb.exe
*.pch *.exe
*.vspscc *.pdb
*_i.c *.user
*_p.c *.aps
*.ncb *.pch
*.suo *.vspscc
*.tlb *_i.c
*.tlh *_p.c
*.bak *.ncb
*.cache *.suo
*.ilk *.tlb
*.log *.tlh
[Bb]in *.bak
[Dd]ebug*/ *.cache
*.lib *.ilk
*.sbr *.log
*.bak [Bb]in
obj/ [Dd]ebug*/
[Rr]elease*/ *.lib
_ReSharper*/ *.sbr
[Tt]est[Rr]esult* *.bak
*.o *.save
BIN/ obj/
ipch/ [Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
*.o
*~
*#
BIN/
ipch/
# We only care about specific files in the Visual Studio Projects
# folder. Things which are there on the fly to support debugging
# or other things we don't want git to manage.
!Visual Studio Projects/*.vcproj
!Visual Studio Projects/*.sln
!Visual Studio Projects/0ReadMe_Projects.txt
Visual Studio Projects/*