From 816fb46be665c8b63647f0096845fef363736b20 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Sat, 2 Jun 2012 14:51:42 -0400 Subject: 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 Signed-off-by: Junio C Hamano --- version.c | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 version.c (limited to 'version.c') diff --git a/version.c b/version.c new file mode 100644 index 0000000000..ca68653865 --- /dev/null +++ b/version.c @@ -0,0 +1,4 @@ +#include "git-compat-util.h" +#include "version.h" + +const char git_version_string[] = GIT_VERSION; -- cgit v1.2.3