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 --- git.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'git.c') diff --git a/git.c b/git.c index d232de92e4..4da3db522a 100644 --- a/git.c +++ b/git.c @@ -256,8 +256,6 @@ static int handle_alias(int *argcp, const char ***argv) return ret; } -const char git_version_string[] = GIT_VERSION; - #define RUN_SETUP (1<<0) #define RUN_SETUP_GENTLY (1<<1) #define USE_PAGER (1<<2) -- cgit v1.2.1