From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (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 6CE9081EDB for ; Tue, 15 Nov 2016 02:40:21 -0800 (PST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 15 Nov 2016 02:40:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,494,1473145200"; d="scan'208";a="1059664063" Received: from shwde7172.ccr.corp.intel.com ([10.239.9.23]) by orsmga001.jf.intel.com with ESMTP; 15 Nov 2016 02:40:24 -0800 From: Liming Gao To: edk2-devel@lists.01.org Date: Tue, 15 Nov 2016 18:39:37 +0800 Message-Id: <1479206377-35532-1-git-send-email-liming.gao@intel.com> X-Mailer: git-send-email 2.8.0.windows.1 In-Reply-To: <1479191390-30812-1-git-send-email-liming.gao@intel.com> References: <1479191390-30812-1-git-send-email-liming.gao@intel.com> Subject: [PATCH v2] 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 10:40:21 -0000 In V2, ignore .exe and .ilk files Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao --- BaseTools/.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BaseTools/.gitignore b/BaseTools/.gitignore index 5ca024c..a45689b 100644 --- a/BaseTools/.gitignore +++ b/BaseTools/.gitignore @@ -1,5 +1,9 @@ *.d *.o +*.obj +*.pdb +*.ilk +*.exe *.pyc Source/C/VfrCompile/EfiVfrParser.cpp Source/C/VfrCompile/EfiVfrParser.h -- 2.8.0.windows.1