From: Junio C Hamano <gitster@pobox.com>
To: git@vger.kernel.org
Subject: [PATCH v2 5/6] name-rev --weight: tests and documentation
Date: Wed, 29 Aug 2012 20:50:28 -0700 [thread overview]
Message-ID: <1346298629-13730-6-git-send-email-gitster@pobox.com> (raw)
In-Reply-To: <1346298629-13730-1-git-send-email-gitster@pobox.com>
We are almost there...
Signed-off-by: Junio C Hamano <gitster@pobox.com>
---
Documentation/git-name-rev.txt | 14 ++++++++--
t/t6039-name-rev.sh | 62 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+), 3 deletions(-)
create mode 100755 t/t6039-name-rev.sh
diff --git a/Documentation/git-name-rev.txt b/Documentation/git-name-rev.txt
index ad1d146..f40027a 100644
--- a/Documentation/git-name-rev.txt
+++ b/Documentation/git-name-rev.txt
@@ -9,13 +9,13 @@ git-name-rev - Find symbolic names for given revs
SYNOPSIS
--------
[verse]
-'git name-rev' [--tags] [--refs=<pattern>]
+'git name-rev' [--tags] [--refs=<pattern>] [--weight]
( --all | --stdin | <committish>... )
DESCRIPTION
-----------
-Finds symbolic names suitable for human digestion for revisions given in any
-format parsable by 'git rev-parse'.
+Finds symbolic names suitable for human digestion for revisions
+given in any format parsable by 'git rev-parse'.
OPTIONS
@@ -47,6 +47,14 @@ OPTIONS
--always::
Show uniquely abbreviated commit object as fallback.
+--weight::
+ Name commits based on the oldest ref that contains it. This
+ is way more expensive than the default behaviour of the
+ command, in which commits are named based on the ref that
+ is topologically the closest, but gives more intuitive
+ answer to the question: what is the oldest tag that contains
+ this commit?
+
EXAMPLE
-------
diff --git a/t/t6039-name-rev.sh b/t/t6039-name-rev.sh
new file mode 100755
index 0000000..315ce14
--- /dev/null
+++ b/t/t6039-name-rev.sh
@@ -0,0 +1,62 @@
+#!/bin/sh
+
+test_description='name-rev'
+. ./test-lib.sh
+
+# Prepare a history with this shape
+#
+# ---0--1--2--3--4--Y--5---7---Z
+# \ / /
+# \ / /
+# X---------------6
+#
+
+test_expect_success setup '
+ test_tick &&
+ git commit --allow-empty -m 0 &&
+ git branch side &&
+ git commit --allow-empty -m 1 &&
+ git checkout side &&
+ git commit --allow-empty -m X &&
+ git branch X &&
+ git commit --allow-empty -m 6 &&
+ git checkout master &&
+ git merge -m 2 X &&
+ git commit --allow-empty -m 3 &&
+ git commit --allow-empty -m 4 &&
+ git commit --allow-empty -m Y &&
+ git tag Y &&
+ git commit --allow-empty -m 5 &&
+ git merge -m 7 side &&
+ git commit --allow-empty -m Z &&
+ git tag Z
+'
+
+test_expect_success 'name-rev (plain)' '
+ # We expect "X tags/Z~1^2~1" but it could
+ # be written as "X tags/Z^^2^"; the only two
+ # important things that matter are that it
+ # is named after Z (not Y), and it correctly
+ # names X.
+ git name-rev --tags X >actual &&
+ read X T <actual &&
+ test "z$X" = zX &&
+ expr "$T" : 'tags/Z[~^]' &&
+ H1=$(git rev-parse --verify "$T") &&
+ H2=$(git rev-parse --verify X) &&
+ test "z$H1" = "z$H2"
+'
+
+test_expect_success 'name-rev --weight' '
+ # Likewise; "X tags/Y~3^2" but we only care
+ # that it is based on Y.
+ git name-rev --weight --tags X >actual &&
+ read X T <actual &&
+ test "z$X" = zX &&
+ expr "$T" : 'tags/Y[~^]' &&
+ H1=$(git rev-parse --verify "$T") &&
+ H2=$(git rev-parse --verify X) &&
+ test "z$H1" = "z$H2"
+'
+
+test_done
--
1.7.12.286.g9df01f7
next prev parent reply other threads:[~2012-08-30 3:51 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-30 3:50 [PATCH v2 0/6] describe --contains / name-rev --weight Junio C Hamano
2012-08-30 3:50 ` [PATCH v2 1/6] name-rev: lose unnecessary typedef Junio C Hamano
2012-08-30 3:50 ` [PATCH v2 2/6] name_rev: clarify the logic to assign a new tip-name to a commit Junio C Hamano
2012-08-30 3:50 ` [PATCH v2 3/6] name-rev: --weight option Junio C Hamano
2012-09-04 22:29 ` [PATCH 3.5/6] name-rev --weight: trivial optimization Junio C Hamano
2012-08-30 3:50 ` [PATCH v2 4/6] name-rev --weight: cache the computed weight in notes Junio C Hamano
2012-08-30 3:50 ` Junio C Hamano [this message]
2012-08-30 3:50 ` [PATCH v2 6/6] describe --contains: use "name-rev --weight" Junio C Hamano
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=1346298629-13730-6-git-send-email-gitster@pobox.com \
--to=gitster@pobox.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).