Browse Source

Notes on getting version from git.

bugz 4 years ago
parent
commit
68a26d0f57
1 changed files with 17 additions and 0 deletions
  1. 17 0
      hharry.cpp

+ 17 - 0
hharry.cpp

@@ -20,6 +20,23 @@
 #include <unistd.h>
 
 struct console_details console;
+
+/*
+https://softwareengineering.stackexchange.com/questions/141973/how-do-you-achieve-a-numeric-versioning-scheme-with-git
+
+Use tags to mark commits with version numbers:
+
+git tag -a v2.5 -m 'Version 2.5'
+
+Push tags upstream—this is not done by default:
+
+git push --tags
+
+Then use the describe command:
+
+git describe --tags --long
+*/
+
 std::string version = HHVERSION;
 
 /*