git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fetch: show reference pointed by new tags
@ 2016-03-06 22:34 Eric Engestrom
  2016-03-07  0:18 ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Engestrom @ 2016-03-06 22:34 UTC (permalink / raw)
  To: git; +Cc: Eric Engestrom

Before, new tags had their names shown twice:
 * [new tag]         v4.5-rc6   -> v4.5-rc6

Instead, show the hash of the commit pointed to:
 * [new tag]         v4.5-rc6   -> fc77dbd

Signed-off-by: Eric Engestrom <eric@engestrom.ch>
---

This is my first dive into git's code, so it's likely I'm not doing things
right. The first candidate for that is the literal `7`, which should probably
be a variable, but I couldn't find what I should use instead.

I'd be happy to fix this for a v2 :]

Cheers,
  Eric


 builtin/fetch.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/builtin/fetch.c b/builtin/fetch.c
index e4639d8..93b2145 100644
--- a/builtin/fetch.c
+++ b/builtin/fetch.c
@@ -515,6 +515,7 @@ static int update_local_ref(struct ref *ref,
 		if (starts_with(name, "refs/tags/")) {
 			msg = "storing tag";
 			what = _("[new tag]");
+			pretty_ref = find_unique_abbrev(ref->new_oid.hash, 7);
 		} else if (starts_with(name, "refs/heads/")) {
 			msg = "storing head";
 			what = _("[new branch]");
-- 
2.7.2

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

end of thread, other threads:[~2016-03-13 15:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-06 22:34 [PATCH] fetch: show reference pointed by new tags Eric Engestrom
2016-03-07  0:18 ` Junio C Hamano
2016-03-07  1:05   ` Junio C Hamano
2016-03-08  4:28     ` Junio C Hamano
2016-03-13 15:38       ` Eric Engestrom

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