Staging
v0.5.1
https://github.com/git/git
Revision cae598d9980661a978e2df4fb338518f7bf09572 authored by Junio C Hamano on 27 September 2018, 18:52:33 UTC, committed by Junio C Hamano on 27 September 2018, 18:52:33 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 1958ad5
Raw File
Tip revision: cae598d9980661a978e2df4fb338518f7bf09572 authored by Junio C Hamano on 27 September 2018, 18:52:33 UTC
Git 2.19.1
Tip revision: cae598d
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