diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-06-18 09:42:10 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-06-18 10:38:40 +0200 |
commit | f69250358a74efa5d7d9c562b2cdd80fad1430f1 (patch) | |
tree | 19c0ddab227d1c27a49046e559618cd067169591 /shared.c | |
parent | Add cgit_diff_link() (diff) | |
download | cgit-pink-f69250358a74efa5d7d9c562b2cdd80fad1430f1.tar.gz cgit-pink-f69250358a74efa5d7d9c562b2cdd80fad1430f1.zip |
Add version info from git-describe
A new script, gen-version.sh, is now invoked from 'make version' to generate the file VERSION. This file contains a version identifier generated by git-describe and is included in the Makefile. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | shared.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shared.c b/shared.c index f20fb5c..f7f43b2 100644 --- a/shared.c +++ b/shared.c @@ -12,6 +12,8 @@ struct repolist cgit_repolist; struct repoinfo *cgit_repo; int cgit_cmd; +const char *cgit_version = CGIT_VERSION; + char *cgit_root_title = "Git repository browser"; char *cgit_css = "/cgit.css"; char *cgit_logo = "/git-logo.png"; |