git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gitk: use the 'reference' format for the commit reference
@ 2020-08-27 16:12 Beat Bolli
  2020-08-27 16:26 ` Eric Sunshine
  0 siblings, 1 reply; 3+ messages in thread
From: Beat Bolli @ 2020-08-27 16:12 UTC (permalink / raw)
  To: Paul Mackerras; +Cc: git, Beat Bolli

Since 1f0fc1db85 (pretty: implement 'reference' format, 2019-11-19) in
the main Git repository, there's an officially blessed format for commit
references. Update gitk to also use this format.

Signed-off-by: Beat Bolli <dev+git@drbeat.li>
---
 gitk | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gitk b/gitk
index da84e22..b26996c 100755
--- a/gitk
+++ b/gitk
@@ -9433,8 +9433,7 @@ proc mktaggo {} {
 proc copyreference {} {
     global rowmenuid autosellen
 
-    set format "%h (\"%s\", %ad)"
-    set cmd [list git show -s --pretty=format:$format --date=short]
+    set cmd [list git show -s --pretty=reference]
     if {$autosellen < 40} {
         lappend cmd --abbrev=$autosellen
     }
-- 
2.26.0.277.gb8618d28a9


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

end of thread, other threads:[~2020-08-27 20:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-27 16:12 [PATCH] gitk: use the 'reference' format for the commit reference Beat Bolli
2020-08-27 16:26 ` Eric Sunshine
2020-08-27 20:35   ` Beat Bolli

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