From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tama50.ecl.ntt.co.jp (tama50.ecl.ntt.co.jp [129.60.39.147]) by dpdk.org (Postfix) with ESMTP id 1F55B2C55 for ; Fri, 31 Aug 2018 11:14:53 +0200 (CEST) Received: from vc1.ecl.ntt.co.jp (vc1.ecl.ntt.co.jp [129.60.86.153]) by tama50.ecl.ntt.co.jp (8.13.8/8.13.8) with ESMTP id w7V9EqCi030938; Fri, 31 Aug 2018 18:14:52 +0900 Received: from vc1.ecl.ntt.co.jp (localhost [127.0.0.1]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id 8DAD2EA8115; Fri, 31 Aug 2018 18:14:52 +0900 (JST) Received: from localhost.localdomain (unknown [129.60.13.51]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id 77168EA6DDE; Fri, 31 Aug 2018 18:14:52 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: spp@dpdk.org, ferruh.yigit@intel.com Cc: Yasufumi Ogawa Date: Fri, 31 Aug 2018 18:14:36 +0900 Message-Id: <20180831091441.39055-7-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.13.1 In-Reply-To: <20180831091441.39055-1-ogawa.yasufumi@lab.ntt.co.jp> References: <20180831091441.39055-1-ogawa.yasufumi@lab.ntt.co.jp> X-TM-AS-MML: disable Subject: [spp] [PATCH 06/11] project: update gitignore to exclude PDF files X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Aug 2018 09:14:54 -0000 From: Yasufumi Ogawa To compile a PDF document, the format of images included in the document should also be PDF. It means that SVG images should be converted to PDF while the PDF document is generated and not be managed from git. To exclude temporarily generated PDF images, add an entry to '.gitignore'. Signed-off-by: Yasufumi Ogawa --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ff9ba64..37bba66 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,6 @@ *.pyc *.log docs/guides/_build/* +docs/guides/images/**/*.pdf src/controller/3rd_party/* tools/sppc/build/*/*/env.sh -- 2.7.4