Revision f7ade3d36bdffe79c12b563154028f700bb8ed3d authored by Jeff King on 05 March 2014, 19:03:21 UTC, committed by Junio C Hamano on 05 March 2014, 21:23:26 UTC
In preparation for being able to check the left-hand side of
our push refspecs separately, this pulls the examination of
them out into its own function. There should be no behavior
change.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 5f95c9f
Raw File
version.h
#ifndef VERSION_H
#define VERSION_H

extern const char git_version_string[];

const char *git_user_agent(void);
const char *git_user_agent_sanitized(void);

#endif /* VERSION_H */
back to top