git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFC] for-each-ref: Field with abbreviated objectname
@ 2010-05-03 20:25 Michael J Gruber
  2010-05-04 11:01 ` Jeff King
  0 siblings, 1 reply; 4+ messages in thread
From: Michael J Gruber @ 2010-05-03 20:25 UTC (permalink / raw)
  To: git; +Cc: Jeff King

Introduce a :short modifier to objectname which outputs the abbreviated
object name.

Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
---
Notes:
    I hope this finds the favour of the for-each-ref-man.
    
    TODO: test, doc

 builtin/for-each-ref.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/builtin/for-each-ref.c b/builtin/for-each-ref.c
index 62be1bb..3a97953 100644
--- a/builtin/for-each-ref.c
+++ b/builtin/for-each-ref.c
@@ -227,6 +227,9 @@ static void grab_common_values(struct atom_value *val, int deref, struct object
 			strcpy(s, sha1_to_hex(obj->sha1));
 			v->s = s;
 		}
+		else if (!strcmp(name, "objectname:short")) {
+			v->s = find_unique_abbrev(obj->sha1, DEFAULT_ABBREV);
+		}
 	}
 }
 
-- 
1.7.1.328.g9993c

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH RFC] for-each-ref: Field with abbreviated objectname
  2010-05-03 20:25 [PATCH RFC] for-each-ref: Field with abbreviated objectname Michael J Gruber
@ 2010-05-04 11:01 ` Jeff King
  2010-05-13 12:31   ` [PATCH] " Michael J Gruber
  0 siblings, 1 reply; 4+ messages in thread
From: Jeff King @ 2010-05-04 11:01 UTC (permalink / raw)
  To: Michael J Gruber; +Cc: git

On Mon, May 03, 2010 at 10:25:19PM +0200, Michael J Gruber wrote:

> Introduce a :short modifier to objectname which outputs the abbreviated
> object name.

I don't see any reason not to do this if you have a use for it.

>     TODO: test, doc

Yep.

> +		else if (!strcmp(name, "objectname:short")) {
> +			v->s = find_unique_abbrev(obj->sha1, DEFAULT_ABBREV);
> +		}

In theory there could be multiple such ":$foo" tags, and we would have
to fix this parser. But given that there aren't other modifiers now, I
think we can just push that problem off until it happens (if ever).

-Peff

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] for-each-ref: Field with abbreviated objectname
  2010-05-04 11:01 ` Jeff King
@ 2010-05-13 12:31   ` Michael J Gruber
  2010-05-14  5:12     ` Jeff King
  0 siblings, 1 reply; 4+ messages in thread
From: Michael J Gruber @ 2010-05-13 12:31 UTC (permalink / raw)
  To: git; +Cc: Jeff King, Junio C Hamano

Introduce a :short modifier to objectname which outputs the abbreviated
object name.

Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
---
 Documentation/git-for-each-ref.txt |    1 +
 builtin/for-each-ref.c             |    3 +++
 t/t6300-for-each-ref.sh            |    9 +++++++++
 3 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/Documentation/git-for-each-ref.txt b/Documentation/git-for-each-ref.txt
index 7e83288..390d85c 100644
--- a/Documentation/git-for-each-ref.txt
+++ b/Documentation/git-for-each-ref.txt
@@ -86,6 +86,7 @@ objectsize::
 
 objectname::
 	The object name (aka SHA-1).
+	For a non-ambiguous abbreviation of the object name append `:short`.
 
 upstream::
 	The name of a local ref which can be considered ``upstream''
diff --git a/builtin/for-each-ref.c b/builtin/for-each-ref.c
index 62be1bb..3a97953 100644
--- a/builtin/for-each-ref.c
+++ b/builtin/for-each-ref.c
@@ -227,6 +227,9 @@ static void grab_common_values(struct atom_value *val, int deref, struct object
 			strcpy(s, sha1_to_hex(obj->sha1));
 			v->s = s;
 		}
+		else if (!strcmp(name, "objectname:short")) {
+			v->s = find_unique_abbrev(obj->sha1, DEFAULT_ABBREV);
+		}
 	}
 }
 
diff --git a/t/t6300-for-each-ref.sh b/t/t6300-for-each-ref.sh
index 8052c86..7dc8a51 100755
--- a/t/t6300-for-each-ref.sh
+++ b/t/t6300-for-each-ref.sh
@@ -295,6 +295,15 @@ test_expect_success 'Check short upstream format' '
 	test_cmp expected actual
 '
 
+cat >expected <<EOF
+67a36f1
+EOF
+
+test_expect_success 'Check short objectname format' '
+	git for-each-ref --format="%(objectname:short)" refs/heads >actual &&
+	test_cmp expected actual
+'
+
 test_expect_success 'Check for invalid refname format' '
 	test_must_fail git for-each-ref --format="%(refname:INVALID)"
 '
-- 
1.7.1.240.geeaa4d

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] for-each-ref: Field with abbreviated objectname
  2010-05-13 12:31   ` [PATCH] " Michael J Gruber
@ 2010-05-14  5:12     ` Jeff King
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff King @ 2010-05-14  5:12 UTC (permalink / raw)
  To: Michael J Gruber; +Cc: git, Junio C Hamano

On Thu, May 13, 2010 at 02:31:46PM +0200, Michael J Gruber wrote:

> Introduce a :short modifier to objectname which outputs the abbreviated
> object name.

Looks fine to me.

-Peff

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-05-14  5:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-03 20:25 [PATCH RFC] for-each-ref: Field with abbreviated objectname Michael J Gruber
2010-05-04 11:01 ` Jeff King
2010-05-13 12:31   ` [PATCH] " Michael J Gruber
2010-05-14  5:12     ` Jeff King

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).