From: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
To: akpm@linux-foundation.org
Cc: linux-kernel@vger.kernel.org, mm-commits@vger.kernel.org,
randy.dunlap@oracle.com, Uwe.Kleine-Koenig@digi.com,
daniel@danielguilak.com, den@openvz.org,
eduard.munteanu@linux360.ro, efault@gmx.de,
etienne_lorrain@yahoo.fr, sam@ravnborg.org, tglx@linutronix.de,
willy@linux.intel.com
Subject: [RFC PATCH] Script for generating Documentation/dontdiff from .gitignore files.
Date: Sun, 14 Sep 2008 21:23:57 +0300 [thread overview]
Message-ID: <1221416637-6259-1-git-send-email-eduard.munteanu@linux360.ro> (raw)
In-Reply-To: <e2e108260809130052u454b6920h9745c27eb2f4b20c@mail.gmail.com>
.gitignore files get more testing than Documentation/dontdiff, since most
developers follow Git workflow when sending patches. The latter tends to
stay outdated and needs to be synchronized every now and then. This patch
provides a script that scans all .gitignore files and generates a
Documentation/dontdiff to stdout.
Signed-off-by: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
---
scripts/gen_dontdiff.sh | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
create mode 100755 scripts/gen_dontdiff.sh
diff --git a/scripts/gen_dontdiff.sh b/scripts/gen_dontdiff.sh
new file mode 100755
index 0000000..cd94747
--- /dev/null
+++ b/scripts/gen_dontdiff.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+# Copyright (C) 2008 Eduard - Gabriel Munteanu
+#
+# This file is released under GPL version 2.
+
+echo "### Generated by gen_dontdiff.sh ###"
+
+grep -Ev "^([[:space:]]*[[#]]*|$)" .gitignore
+
+find . -mindepth 2 -name .gitignore | sed -e "s/^\.\///g" | while read FILE
+do
+ CURR_DIR=`echo "$FILE" | sed -e "s/\.gitignore$//g"`
+ echo "# $FILE"
+ grep -Ev "^([[:space:]]*[[#]]*|$)" $FILE | while read LINE
+ do
+ echo $CURR_DIR$LINE
+ done
+ echo ""
+done
+
--
1.5.6.1
next parent reply other threads:[~2008-09-14 18:24 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <e2e108260809130052u454b6920h9745c27eb2f4b20c@mail.gmail.com>
2008-09-14 18:23 ` Eduard - Gabriel Munteanu [this message]
2008-09-15 15:34 ` [RFC PATCH] Script for generating Documentation/dontdiff from .gitignore files Randy Dunlap
2008-09-16 3:26 ` [RFC PATCH] Script for generating Documentation/dontdiff from .gitignore files. (was Re: [RFC/PATCH] dontdiff: generate from gitignore) Eduard - Gabriel Munteanu
2008-09-01 22:09 [path] don't diff generated firmware files Arjan van de Ven
2008-09-01 23:14 ` Alexey Dobriyan
2008-09-12 17:17 ` Randy Dunlap
2008-09-12 17:17 ` [PATCH] dontdiff: more updates to be closer to gitignore Randy Dunlap
2008-09-12 17:18 ` [RFC/PATCH] dontdiff: generate from gitignore Randy Dunlap
2008-09-12 17:36 ` Linus Torvalds
2008-09-12 17:41 ` Randy Dunlap
2008-09-12 20:32 ` Kai Henningsen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1221416637-6259-1-git-send-email-eduard.munteanu@linux360.ro \
--to=eduard.munteanu@linux360.ro \
--cc=Uwe.Kleine-Koenig@digi.com \
--cc=akpm@linux-foundation.org \
--cc=daniel@danielguilak.com \
--cc=den@openvz.org \
--cc=efault@gmx.de \
--cc=etienne_lorrain@yahoo.fr \
--cc=linux-kernel@vger.kernel.org \
--cc=mm-commits@vger.kernel.org \
--cc=randy.dunlap@oracle.com \
--cc=sam@ravnborg.org \
--cc=tglx@linutronix.de \
--cc=willy@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.