summaryrefslogtreecommitdiffstats
path: root/help.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2012-06-02 20:51:42 +0200
committerJunio C Hamano <gitster@pobox.com>2012-06-03 22:11:34 +0200
commit816fb46be665c8b63647f0096845fef363736b20 (patch)
tree4a8921bb8bfadd1916a7a31c1b7b9e9726e98a8a /help.c
parentUpdate draft release notes to 1.7.11 (diff)
downloadgit-816fb46be665c8b63647f0096845fef363736b20.tar.xz
git-816fb46be665c8b63647f0096845fef363736b20.zip
move git_version_string into version.c
The global git_version_string currently lives in git.c, but doesn't have anything to do with the git wrapper. Let's move it into its own file, where it will be more appropriate to build more version-related functions. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'help.c')
-rw-r--r--help.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/help.c b/help.c
index 6012c07b73..662349dd56 100644
--- a/help.c
+++ b/help.c
@@ -6,6 +6,7 @@
#include "common-cmds.h"
#include "string-list.h"
#include "column.h"
+#include "version.h"
void add_cmdname(struct cmdnames *cmds, const char *name, int len)
{