swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 1e758cfe36543317bc1946388a3211aba9a95807 authored by Junio C Hamano on 30 March 2021, 05:24:01 UTC
Merge branch 'll/clone-reject-shallow' into seen
Tip revision: 1e758cf
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);

int git_read_line_interactively(struct strbuf *line);

#endif /* PROMPT_H */
back to top