From: Jeff Sipek <jeffpc@josefsipek.net>
To: Per Cederqvist <cederp@opera.com>
Cc: git@vger.kernel.org
Subject: Re: [GUILT 2/2] Teach "guilt graph" the "-x exclude-pattern" option.
Date: Fri, 23 Jan 2015 09:49:13 -0500 [thread overview]
Message-ID: <20150123144913.GI101465@meili.jeffnet.31bits.net> (raw)
In-Reply-To: <1422022867-7908-3-git-send-email-cederp@opera.com>
On Fri, Jan 23, 2015 at 03:21:07PM +0100, Per Cederqvist wrote:
> Some projects keep a ChangeLog which every commit modifies. This
> makes the graph a very uninteresting single line of commits. It is
> sometimes useful to see how the graph would look if we ignore the
> ChangeLog file.
>
> The new -x option is useful in situations like this. It can be
> repeated several times to ignore many files. Each argument is saved
> to a temporary file and "grep -v -f $TEMPORARY" is used to filter out
> the file names you want to ignore.
Cool idea.
> Also added a minimal test case and documentation.
>
> Signed-off-by: Per Cederqvist <cederp@opera.com>
> ---
> Documentation/guilt-graph.txt | 5 +++++
> guilt-graph | 24 ++++++++++++++++++------
> regression/t-033.out | 12 ++++++++++++
> regression/t-033.sh | 3 +++
> 4 files changed, 38 insertions(+), 6 deletions(-)
>
> diff --git a/Documentation/guilt-graph.txt b/Documentation/guilt-graph.txt
> index f43206e..eeed321 100644
> --- a/Documentation/guilt-graph.txt
> +++ b/Documentation/guilt-graph.txt
> @@ -16,6 +16,11 @@ patches.
>
> OPTIONS
> -------
> +-x <pattern>::
> + Ignore files that matches the given grep pattern. Can be
> + repeated to ignore several files. This can be useful to ignore
> + for instance ChangeLog files that every commit modifies.
> +
> <patchname>::
> Instead of starting with the topmost applied patch, start with
> <patchname>.
> diff --git a/guilt-graph b/guilt-graph
> index d90c2f1..4d5fe46 100755
> --- a/guilt-graph
> +++ b/guilt-graph
> @@ -3,7 +3,7 @@
> # Copyright (c) Josef "Jeff" Sipek, 2007-2013
> #
>
> -USAGE="[<patchname>]"
> +USAGE="[-x exclude-pattern]... [<patchname>]"
> if [ -z "$GUILT_VERSION" ]; then
> echo "Invoking `basename "$0"` directly is no longer supported." >&2
> exit 1
> @@ -11,6 +11,22 @@ fi
>
> _main() {
>
> +cache="$GUILT_DIR/$branch/.graphcache.$$"
> +xclude="$GUILT_DIR/$branch/.graphexclude.$$"
> +trap "rm -rf \"$cache\" \"$xclude\"" 0
> +mkdir "$cache"
> +>"$xclude"
> +
> +while [ $# -gt 0 ]; do
> + if [ "$1" = "-x" ] && [ $# -ge 2 ]; then
> + echo "$2" >> "$xclude"
> + shift
> + shift
> + else
> + break
> + fi
Spaces used for indentation. Otherwise looks good.
Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
> +done
> +
> if [ $# -gt 1 ]; then
> usage
> fi
> @@ -39,10 +55,6 @@ getfiles()
> git diff-tree -r "$1^" "$1" | cut -f2
> }
>
> -cache="$GUILT_DIR/$branch/.graphcache.$$"
> -mkdir "$cache"
> -trap "rm -rf \"$cache\"" 0
> -
> disp "digraph G {"
>
> current="$top"
> @@ -66,7 +78,7 @@ while [ "$current" != "$base" ]; do
> rm -f "$cache/dep"
> touch "$cache/dep"
>
> - getfiles $current | while read f; do
> + getfiles $current | grep -v -f "$xclude" | while read f; do
> # hash the filename
> fh=`echo "$f" | sha1 | cut -d' ' -f1`
> if [ -e "$cache/$fh" ]; then
> diff --git a/regression/t-033.out b/regression/t-033.out
> index c120d4f..1ed371f 100644
> --- a/regression/t-033.out
> +++ b/regression/t-033.out
> @@ -88,3 +88,15 @@ digraph G {
> "ff2775f8d1dc753f635830adcc3a067e0b681e2d" [label="a.patch"]
> "891bc14b5603474c9743fd04f3da888644413dc5" -> "ff2775f8d1dc753f635830adcc3a067e0b681e2d"; // ?
> }
> +%% The same graph, but excluding deps introduced by file.txt.
> +% guilt graph -x file.txt
> +digraph G {
> +# checking rev bc7df666a646739eaf559af23cab72f2bfd01f0e
> + "bc7df666a646739eaf559af23cab72f2bfd01f0e" [label="a-\"better&quicker'-patch.patch"]
> +# checking rev 891bc14b5603474c9743fd04f3da888644413dc5
> + "891bc14b5603474c9743fd04f3da888644413dc5" [label="c.patch"]
> +# checking rev c7014443c33d2b0237293687ceb9cbd38313df65
> + "c7014443c33d2b0237293687ceb9cbd38313df65" [label="b.patch"]
> +# checking rev ff2775f8d1dc753f635830adcc3a067e0b681e2d
> + "ff2775f8d1dc753f635830adcc3a067e0b681e2d" [label="a.patch"]
> +}
> diff --git a/regression/t-033.sh b/regression/t-033.sh
> index 9fe1827..ae22914 100755
> --- a/regression/t-033.sh
> +++ b/regression/t-033.sh
> @@ -59,3 +59,6 @@ cmd git add file.txt
> cmd guilt refresh
> fixup_time_info "a-\"better&quicker'-patch.patch"
> cmd guilt graph
> +
> +echo "%% The same graph, but excluding deps introduced by file.txt."
> +cmd guilt graph -x file.txt
> --
> 2.1.0
>
--
Computer Science is no more about computers than astronomy is about
telescopes.
- Edsger Dijkstra
prev parent reply other threads:[~2015-01-23 14:49 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-23 14:21 [GUILT 0/2] Teach "guilt graph" to ignore some files Per Cederqvist
2015-01-23 14:21 ` [GUILT 1/2] guilt graph: Simplify getfiles Per Cederqvist
2015-01-23 14:36 ` Jeff Sipek
2015-01-23 14:21 ` [GUILT 2/2] Teach "guilt graph" the "-x exclude-pattern" option Per Cederqvist
2015-01-23 14:49 ` Jeff Sipek [this message]
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=20150123144913.GI101465@meili.jeffnet.31bits.net \
--to=jeffpc@josefsipek.net \
--cc=cederp@opera.com \
--cc=git@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).