From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from bcmv-tmail01.ecl.ntt.co.jp (bcmv-tmail01.ecl.ntt.co.jp [124.146.185.148]) by dpdk.org (Postfix) with ESMTP id 8146B1B118 for ; Wed, 26 Sep 2018 11:10:46 +0200 (CEST) Received: from bcmv-ns01.ecl.ntt.co.jp (bcmv-ns01.ecl.ntt.co.jp [129.60.83.123]) by bcmv-tmail01.ecl.ntt.co.jp (8.14.4/8.14.4) with ESMTP id w8Q9Ajbh006966; Wed, 26 Sep 2018 18:10:45 +0900 Received: from bcmv-ns01.ecl.ntt.co.jp (localhost [127.0.0.1]) by bcmv-ns01.ecl.ntt.co.jp (Postfix) with ESMTP id 513A7140; Wed, 26 Sep 2018 18:10:45 +0900 (JST) Received: from localhost.localdomain (lobster.nslab.ecl.ntt.co.jp [129.60.13.95]) by bcmv-ns01.ecl.ntt.co.jp (Postfix) with ESMTP id 3BB58110; Wed, 26 Sep 2018 18:10:45 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: ferruh.yigit@intel.com, spp@dpdk.org, ogawa.yasufumi@lab.ntt.co.jp Date: Wed, 26 Sep 2018 18:08:34 +0900 Message-Id: <1537952921-20397-7-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1537952921-20397-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> References: <1537952921-20397-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-TM-AS-MML: disable Subject: [spp] [PATCH v2 06/13] 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: Wed, 26 Sep 2018 09:10:47 -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