https://github.com/git/git
Revision eeed979e6a13b60667c856dc3418a14f67607875 authored by Junio C Hamano on 18 October 2017, 05:19:14 UTC, committed by Junio C Hamano on 18 October 2017, 05:19:14 UTC
Leakfix and futureproofing.

* jk/sha1-loose-object-info-fix:
  sha1_loose_object_info: handle errors from unpack_sha1_rest
2 parent s a116022 + b3ea7dd
Raw File
Tip revision: eeed979e6a13b60667c856dc3418a14f67607875 authored by Junio C Hamano on 18 October 2017, 05:19:14 UTC
Merge branch 'jk/sha1-loose-object-info-fix' into maint
Tip revision: eeed979
prompt.h
#ifndef PROMPT_H
#define PROMPT_H

#define PROMPT_ASKPASS (1<<0)
#define PROMPT_ECHO    (1<<1)

char *git_prompt(const char *prompt, int flags);

#endif /* PROMPT_H */
back to top