From patchwork Wed Jan 20 15:43:33 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Eckelmann X-Patchwork-Id: 5017 Return-Path: Received-SPF: Neutral (access neither permitted nor denied) identity=mailfrom; client-ip=74.125.82.54; helo=mail-wm0-f54.google.com; envelope-from=sven@open-mesh.com; receiver=b.a.t.m.a.n@lists.open-mesh.org Authentication-Results: open-mesh.org; dmarc=none header.from=open-mesh.com Authentication-Results: open-mesh.org; dkim=pass reason="2048-bit key; unprotected key" header.d=open-mesh-com.20150623.gappssmtp.com header.i=@open-mesh-com.20150623.gappssmtp.com header.b=FWAJqN5z; dkim-adsp=none (unprotected policy); dkim-atps=neutral Received: from mail-wm0-f54.google.com (mail-wm0-f54.google.com [74.125.82.54]) by open-mesh.org (Postfix) with ESMTPS id 3BDE581BB1 for ; Wed, 20 Jan 2016 16:43:44 +0100 (CET) Received: by mail-wm0-f54.google.com with SMTP id 123so138018648wmz.0 for ; Wed, 20 Jan 2016 07:43:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=open-mesh-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=MfAP7EoXEdl0Sit8pOBoNpCaH3PwSrQXwJRHdYIr3ss=; b=FWAJqN5z1eM5wkAEi2ZDNshVC6jpeAzV01GUQ/eVYn7Fc7ThaOgwrQnrKn/F2atEA6 UI0kevYXekySKJeOhILSJtU0/KQ4WgE+G2QnH7R7RXsz3BGChhzlbjdKO+7gaxURk4GS Zk01WvxYzy5V8phS1YFoPI3saATo/7UzmTv35mTgPg89tGp+5HghveqqAi9AVSlgc1Je w8TqGvi5iSNjJWdgmFKk27kFANMyBZwiOyxNrH+nLcJII/IYjBCr6Fbu9J81PuXgvrgO BZQkaRTQaUQ7v2P0kk/PJ8lnkKWC9X1RuzaUsWuHJP+vK2IM2szPc1PvMXWzBX4ui4Fr /sIQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=MfAP7EoXEdl0Sit8pOBoNpCaH3PwSrQXwJRHdYIr3ss=; b=UXa6NeYGVc89JzVzQ+7CrZxVYNlwJPuS8eXSU8YDLhSGshzCiGwx257qWdHzBAbtof A5MNMbQJb8ac7BZVIxueLSiFwYkOzXKImoPEZiD1mZcgcb2cq6k0L/dfOegO/B88QH5t /JQXaLned2M9kfH/zJm6BKa7VG6fWhgszsrc9+kueQl9446ZIjauSmikBGRAD5DmU4eK tOOZn2e9jqe0tAFz7U8APf4DzLyA5NuQrvfcLq3SJIs3LAuREAspvLOth0UBnBe2zzKO O4hKZDXJxEjAWsCitzyev5pPeQxUYJZoBuC9gOZ4+u/jNhLHcyVMZzK4J2L0jnll1Jmy qnaA== X-Gm-Message-State: ALoCoQkmBBgm6dsStzqtIH/HZzDA7LlPSPewCnTuqNLvbVHb86ImsF+qUHmVDc/1ii3pL3m58WXzZQIJVT/rH6NG0xan6Ms5uw== X-Received: by 10.194.114.164 with SMTP id jh4mr36464462wjb.153.1453304624285; Wed, 20 Jan 2016 07:43:44 -0800 (PST) Received: from sven-desktop.home.narfation.org (x4d05afc7.dyn.telefonica.de. [77.5.175.199]) by smtp.gmail.com with ESMTPSA id z127sm25693169wme.2.2016.01.20.07.43.43 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 20 Jan 2016 07:43:43 -0800 (PST) From: Sven Eckelmann To: b.a.t.m.a.n@lists.open-mesh.org Date: Wed, 20 Jan 2016 16:43:33 +0100 Message-Id: <1453304613-26028-1-git-send-email-sven@open-mesh.com> X-Mailer: git-send-email 2.7.0.rc3 Cc: Sven Eckelmann Subject: [B.A.T.M.A.N.] [PATCH] alfred: Ignore temporary files in git-status/git-add/... X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jan 2016 15:43:45 -0000 Signed-off-by: Sven Eckelmann --- .gitattributes | 2 ++ .gitignore | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..eeef3e0 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +/.gitignore export-ignore +/.gitattributes export-ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b341a0e --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +/*.d +/*.o +/alfred +/gpsd/*.d +/gpsd/*.o +/gpsd/alfred-gpsd +/vis/*.d +/vis/*.o +/vis/batadv-vis