Revision 5febbda4e7afb4f26bed9d2dc5f9c4ceca86d2b8 authored by Junio C Hamano on 10 February 2012, 21:59:01 UTC, committed by Junio C Hamano on 10 February 2012, 21:59:01 UTC
* jl/submodule-re-add:
  submodule add: fix breakage when re-adding a deep submodule
2 parent s 38ca63f + 1017c1a
Raw File
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);
char *git_getpass(const char *prompt);

#endif /* PROMPT_H */
back to top