From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 6092881E80 for ; Mon, 14 Nov 2016 22:30:11 -0800 (PST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP; 14 Nov 2016 22:30:15 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,640,1473145200"; d="scan'208";a="1085326092" Received: from shwde7172.ccr.corp.intel.com ([10.239.9.23]) by fmsmga002.fm.intel.com with ESMTP; 14 Nov 2016 22:30:15 -0800 From: Liming Gao To: edk2-devel@lists.01.org Date: Tue, 15 Nov 2016 14:29:50 +0800 Message-Id: <1479191390-30812-1-git-send-email-liming.gao@intel.com> X-Mailer: git-send-email 2.8.0.windows.1 Subject: [Patch] BaseTools gitignore: Ignore VS intermediate files *.obj and *.pdb X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Nov 2016 06:30:11 -0000 Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao --- BaseTools/.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BaseTools/.gitignore b/BaseTools/.gitignore index 5ca024c..d737258 100644 --- a/BaseTools/.gitignore +++ b/BaseTools/.gitignore @@ -1,5 +1,7 @@ *.d *.o +*.obj +*.pdb *.pyc Source/C/VfrCompile/EfiVfrParser.cpp Source/C/VfrCompile/EfiVfrParser.h -- 2.8.0.windows.1