Revision c5a8f1efc03746fd6b6c71fef8e3a5c38ce4e2e8 authored by Junio C Hamano on 29 September 2020, 21:01:19 UTC, committed by Junio C Hamano on 29 September 2020, 21:01:20 UTC
More FAQ entries.

* bc/faq-misc:
  docs: explain how to deal with files that are always modified
  docs: explain why reverts are not always applied on merge
  docs: explain why squash merges are broken with long-running branches
2 parent s 9bc233a + 087c616
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);

int git_read_line_interactively(struct strbuf *line);

#endif /* PROMPT_H */
back to top