Revision d52571d5c10efeb35ceeeb17f9b5e5f0ca1c3019 authored by Junio C Hamano on 14 March 2014, 21:26:04 UTC, committed by Junio C Hamano on 14 March 2014, 21:26:05 UTC
"git push" did not pay attention to branch.*.pushremote if it is
defined earlier than remote.pushdefault; the order of these two
variables in the configuration file should not matter, but it did by
mistake.

* jk/remote-pushremote-config-reading:
  remote: handle pushremote config in any order
2 parent s 3c83b08 + 98b406f
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