Revision 276d709305a8ac60e6165d1469122316e0bb1075 authored by Junio C Hamano on 29 November 2012, 20:52:30 UTC, committed by Junio C Hamano on 29 November 2012, 20:52:30 UTC
Finishing touches to "git rm $submodule" that removes the working
tree of a submodule.

* jl/submodule-rm:
  Teach rm to remove submodules when given with a trailing '/'
2 parent s 36ea7ce + 53e4c5d
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