From 0e1a8404a071249266e30a9eda44c5eeca7c2c33 Mon Sep 17 00:00:00 2001 From: Mike Kaufman Date: Tue, 5 Apr 2016 16:15:55 -0700 Subject: [PATCH 1/2] gitignore: ignore VS 2015 *.VC.opendb files These files are created by VS 2015 and should be ignored by git. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 734d92d4d719af..db08050e14e697 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,7 @@ _UpgradeReport_Files/ ipch/ *.sdf *.opensdf +*.VC.opendb /config.mk /config.gypi From b514076f780272cef8dbffc1b439a257136d57f2 Mon Sep 17 00:00:00 2001 From: Mike Kaufman Date: Wed, 13 Apr 2016 14:38:19 -0700 Subject: [PATCH 2/2] gitignore: adding .vs/ directory to .gitignore This is created by vs 2015 for user & machine-specific files and should be ignored by git. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index db08050e14e697..c7361af80c79dc 100644 --- a/.gitignore +++ b/.gitignore @@ -42,6 +42,7 @@ ipch/ *.sdf *.opensdf *.VC.opendb +.vs/ /config.mk /config.gypi