Revision 2409e1035c6c81416f97bc8997ff1bd8cfb94f98 authored by Junio C Hamano on 15 February 2018, 23:18:13 UTC, committed by Junio C Hamano on 15 February 2018, 23:18:13 UTC
"git add -p" was taught to ignore local changes to submodules as
they do not interfere with the partial addition of regular changes
anyway.

* nd/add-i-ignore-submodules:
  add--interactive: ignore submodule changes except HEAD
2 parent s 984c833 + 12434ef
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);

#endif /* PROMPT_H */
back to top