Revision 3e14384b126cf9911a35dfda21f04abd4199aa54 authored by Junio C Hamano on 21 March 2014, 19:33:29 UTC, committed by Junio C Hamano on 21 March 2014, 19:33:29 UTC
Serving objects from a shallow repository needs to write a
new file to hold the temporary shallow boundaries but it was not
cleaned when we exit due to die() or a signal.

* jk/shallow-update-fix:
  shallow: verify shallow file after taking lock
  shallow: automatically clean up shallow tempfiles
  shallow: use stat_validity to check for up-to-date file
2 parent s 4291cc1 + 7839632
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