git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH] GIT-VERSION-GEN: set --abbrev=9 to match auto-scaling
@ 2016-12-04 20:45 Ramsay Jones
  2016-12-05  5:32 ` Jeff King
  0 siblings, 1 reply; 12+ messages in thread
From: Ramsay Jones @ 2016-12-04 20:45 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: GIT Mailing-list


Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
---

Hi Junio,

I recently noticed that:

    $ make >pout 2>&1
    $ ./git version
    git version 2.11.0.286.g109e8a9
    $ git describe
    v2.11.0-286-g109e8a99d
    $

... for non-release builds, the commit part of the version
string was still using an --abbrev=7.

I don't know that it actually matters too much (since it will
show as many as necessary, thus the RFC), but it caused me to
look twice. ;-)

ATB,
Ramsay Jones

 GIT-VERSION-GEN | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index 520d6e66e..05601f753 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -12,7 +12,7 @@ if test -f version
 then
 	VN=$(cat version) || VN="$DEF_VER"
 elif test -d ${GIT_DIR:-.git} -o -f .git &&
-	VN=$(git describe --match "v[0-9]*" --abbrev=7 HEAD 2>/dev/null) &&
+	VN=$(git describe --match "v[0-9]*" --abbrev=9 HEAD 2>/dev/null) &&
 	case "$VN" in
 	*$LF*) (exit 1) ;;
 	v[0-9]*)
-- 
2.11.0

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

end of thread, other threads:[~2016-12-06 20:43 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-04 20:45 [RFC PATCH] GIT-VERSION-GEN: set --abbrev=9 to match auto-scaling Ramsay Jones
2016-12-05  5:32 ` Jeff King
2016-12-05 11:21   ` Ramsay Jones
2016-12-05 18:10     ` Junio C Hamano
2016-12-05 20:30       ` Ramsay Jones
2016-12-05 22:24         ` Junio C Hamano
2016-12-05 22:42           ` Ramsay Jones
2016-12-05 18:01   ` Junio C Hamano
2016-12-06 14:03     ` Jeff King
2016-12-06 18:17       ` Junio C Hamano
2016-12-06 18:26         ` Jeff King
2016-12-06 20:43           ` Ramsay Jones

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