From: Frank Sorenson <frank@tuxrocks.com>
To: Petr Baudis <pasky@suse.cz>, Git Mailing List <git@vger.kernel.org>
Subject: [PATCH] cg-log: ignore merges by default, and add --show-merges option
Date: Thu, 10 Nov 2005 14:03:10 -0700 [thread overview]
Message-ID: <4373B58E.6030606@tuxrocks.com> (raw)
In-Reply-To: <4373B1A6.8000706@tuxrocks.com>
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
This patch allows cg-log to ignore merges by default,but will display
them if requested (with "--show-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..ed2278e 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.
#
+# --show-merges::
+# Display merges in the log as well (ignored by default).
+#
# -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="--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 --show-merges; then
+ 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
iD8DBQFDc7WOaI0dwg4A47wRAsPuAJ0W0s82jfxu+c/oHRPULaa5l9ITagCdEkhz
NZAE2w8SnNbHl3/8MDtFT3w=
=4cRS
-----END PGP SIGNATURE-----
prev parent reply other threads:[~2005-11-10 21:03 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-10 20:46 [PATCH] cg-log: add --no-merges option to be passed to git-rev-list Frank Sorenson
2005-11-10 21:03 ` Frank Sorenson [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=4373B58E.6030606@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 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).