mirror of
https://github.com/git/git.git
synced 2026-01-10 01:56:42 +00:00
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>
5 lines
98 B
C
5 lines
98 B
C
#include "git-compat-util.h"
|
|
#include "version.h"
|
|
|
|
const char git_version_string[] = GIT_VERSION;
|