From patchwork Wed Jan 20 15:43:57 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Eckelmann X-Patchwork-Id: 4980 Return-Path: Received-SPF: Neutral (access neither permitted nor denied) identity=mailfrom; client-ip=74.125.82.50; helo=mail-wm0-f50.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=wk81EDNW; dkim-adsp=none (unprotected policy); dkim-atps=neutral Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by open-mesh.org (Postfix) with ESMTPS id 6DF1F81BBF for ; Wed, 20 Jan 2016 16:44:02 +0100 (CET) Received: by mail-wm0-f50.google.com with SMTP id u188so190001295wmu.1 for ; Wed, 20 Jan 2016 07:44:02 -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=0CMIwrQPJubxW5o+NWPfW6wMONWkVWm0pDNl5/NgbqI=; b=wk81EDNWdaL0ylojYhHY+dFllGUVYBKRhdFnq1ZFeyyPTAR63F+hsRxjfftsmBKNFG A6RNPhYMdGyWTlFUQA+M6gMzyv5/lYXgtGMELYBdLFoO6R1DqukKNuDA17606boeFxyQ MR8YlBtdz1Qkrxvs+k0BPV7elCDrqurzJRSfsb3epe/F7d0/XSKi5DOvJ6zSf5QIvsZY RnVfDc8gZrpqO5XurlR35jeeuLP4bhFJxAeBWL56ZIFHu/Z24KkHY6qtFRM9a/FlTJIZ A6FmUJxz+icJsdknFoZziCWirAQ5nPF5MDXSht5Pcna3zTezA9jfdHQ1UOzc2xGt5W9v 5ynQ== 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=0CMIwrQPJubxW5o+NWPfW6wMONWkVWm0pDNl5/NgbqI=; b=XQ+rC+boNwCX7233pH/lMz9/5ftY8UL06Q99j+oZm7E4rvi6e+JlHI5xgttzXo+78o BlCpG5aqKW/DqZWZ0usUO3RSJTt6h/OU7I8kAUalK5hJXrL8C97BbRp9RpNo0FV8UETE T2U+un8/TryfieOvsYeC7yT/U5FGUUuE4FWRfBMh4Hk2Q9wteQNiweVFaCj9M1o94DHA 0LVRN3L8ltcgoaIYcF4NIffIY1p3bLDYgV1hWXgby69puaPVqc2JzTsr1NWz57aGxMM0 XF4wY7Z1ZRez3YmfvpVFBTjWGZlh8NRvykD6Z6ya8yCGrhr7bm1fGbDet79gxcru3tJu Ar9Q== X-Gm-Message-State: ALoCoQkk2a68HPhm+ZfdbkmxveoK/EpjIOmuKxgYfpZfnd9ZM8nyDK+To0L+XCs6/c1JrVv1cXm+ujYnMb8aJZMU0i9olf/h9g== X-Received: by 10.194.203.99 with SMTP id kp3mr37008055wjc.3.1453304642037; Wed, 20 Jan 2016 07:44:02 -0800 (PST) Received: from sven-desktop.home.narfation.org (x4d05afc7.dyn.telefonica.de. [77.5.175.199]) by smtp.gmail.com with ESMTPSA id l7sm33932416wjx.14.2016.01.20.07.44.01 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 20 Jan 2016 07:44:01 -0800 (PST) From: Sven Eckelmann To: b.a.t.m.a.n@lists.open-mesh.org Date: Wed, 20 Jan 2016 16:43:57 +0100 Message-Id: <1453304637-28874-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] batctl: 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:44:02 -0000 Signed-off-by: Sven Eckelmann --- .gitattributes | 2 ++ .gitignore | 3 +++ 2 files changed, 5 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..8f1d328 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/*.d +/*.o +/batctl