gitignore: Fix match rules now realizing the last match takes precedence
This commit is contained in:
parent
660e2b9f3f
commit
a8adf0d5f0
1 changed files with 2 additions and 2 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -5,9 +5,9 @@ Thumbs.db
|
||||||
.DS_Store
|
.DS_Store
|
||||||
#Ignore files built by Visual Studio
|
#Ignore files built by Visual Studio
|
||||||
*.obj
|
*.obj
|
||||||
|
*.exe
|
||||||
# VAX/vmb.exe is not a generated file and should be in the repository
|
# VAX/vmb.exe is not a generated file and should be in the repository
|
||||||
!VAX/vmb.exe
|
!VAX/vmb.exe
|
||||||
*.exe
|
|
||||||
*.pdb
|
*.pdb
|
||||||
*.user
|
*.user
|
||||||
*.aps
|
*.aps
|
||||||
|
@ -41,9 +41,9 @@ ipch/
|
||||||
# We only care about specific files in the Visual Studio Projects
|
# We only care about specific files in the Visual Studio Projects
|
||||||
# folder. Things which are there on the fly to support debugging
|
# folder. Things which are there on the fly to support debugging
|
||||||
# or other things we don't want git to manage.
|
# or other things we don't want git to manage.
|
||||||
|
Visual Studio Projects/*
|
||||||
!Visual Studio Projects/*.vcproj
|
!Visual Studio Projects/*.vcproj
|
||||||
!Visual Studio Projects/*.sln
|
!Visual Studio Projects/*.sln
|
||||||
!Visual Studio Projects/0ReadMe_Projects.txt
|
!Visual Studio Projects/0ReadMe_Projects.txt
|
||||||
Visual Studio Projects/*
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue