From: Frank Sorenson <frank@tuxrocks.com>
To: Petr Baudis <pasky@suse.cz>, Git Mailing List <git@vger.kernel.org>
Subject: [PATCH] cg-log: add --no-merges option to be passed to git-rev-list
Date: Thu, 10 Nov 2005 13:46:30 -0700 [thread overview]
Message-ID: <4373B1A6.8000706@tuxrocks.com> (raw)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
This patch allows cg-log to ignore merges.
Signed-off-by: Frank Sorenson <frank@tuxrocks.com>
cg-log | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/cg-log b/cg-log
index 7d955e3..2cebf04 100755
- --- a/cg-log
+++ b/cg-log
@@ -58,6 +58,9 @@
# by their author. This is also known as a "shortlog", suitable
# e.g. for contribution summaries of announcements.
#
+# --no-merges::
+# Don't display merges in the log.
+#
# -uUSERNAME::
# List only commits where author or committer contains 'USERNAME'.
# The search for 'USERNAME' is case-insensitive.
@@ -255,6 +258,7 @@ user=
mergebase=
date_from=
date_to=
+no_merges=
while optparse; do
if optparse -c; then
@@ -300,6 +304,8 @@ while optparse; do
summary=1
elif optparse --summary; then
shortlog=1
+ elif optparse --no-merges; then
+ no_merges="--no-merges"
else
optfail
fi
@@ -315,9 +321,9 @@ if [ "$mergebase" ]; then
fi
if [ "$shortlog" ]; then
- - revls="git-rev-list --pretty=short $date_from $date_to"
+ revls="git-rev-list --pretty=short $no_merges $date_from $date_to"
else
- - revls="git-rev-list --pretty=raw $date_from $date_to"
+ revls="git-rev-list --pretty=raw $no_merges $date_from $date_to"
fi
revls="$revls $date_from $date_to"
Frank
- --
Frank Sorenson - KD7TZK
Systems Manager, Computer Science Department
Brigham Young University
frank@tuxrocks.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.7 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org
iD8DBQFDc7GmaI0dwg4A47wRAosOAJ4k7ObTH9dc0me1SEGZFib0KsceqQCdHxX8
w7WXZzCR5dLKgyA0LV49YFU=
=6kA3
-----END PGP SIGNATURE-----
next reply other threads:[~2005-11-10 20:47 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-10 20:46 Frank Sorenson [this message]
2005-11-10 21:03 ` [PATCH] cg-log: ignore merges by default, and add --show-merges option Frank Sorenson
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=4373B1A6.8000706@tuxrocks.com \
--to=frank@tuxrocks.com \
--cc=git@vger.kernel.org \
--cc=pasky@suse.cz \
/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.