mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
42dcbb738b
This is basically a fancy way of saying "git/$GIT_VERSION", except that it is overridable at build-time and through the environment. Which means that people who don't want to advertise their git version (for privacy or security reasons) can tweak it. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
8 lines
136 B
C
8 lines
136 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
extern const char git_version_string[];
|
|
|
|
const char *git_user_agent(void);
|
|
|
|
#endif /* VERSION_H */
|