built-in add -p: implement the "stash" and "reset" patch modes
[git] / add-interactive.h
1 #ifndef ADD_INTERACTIVE_H
2 #define ADD_INTERACTIVE_H
3
4 #include "color.h"
5
6 struct add_i_state {
7         struct repository *r;
8         int use_color;
9         char header_color[COLOR_MAXLEN];
10         char help_color[COLOR_MAXLEN];
11         char prompt_color[COLOR_MAXLEN];
12         char error_color[COLOR_MAXLEN];
13         char reset_color[COLOR_MAXLEN];
14         char fraginfo_color[COLOR_MAXLEN];
15         char context_color[COLOR_MAXLEN];
16         char file_old_color[COLOR_MAXLEN];
17         char file_new_color[COLOR_MAXLEN];
18 };
19
20 void init_add_i_state(struct add_i_state *s, struct repository *r);
21
22 struct repository;
23 struct pathspec;
24 int run_add_i(struct repository *r, const struct pathspec *ps);
25
26 enum add_p_mode {
27         ADD_P_ADD,
28         ADD_P_STASH,
29         ADD_P_RESET,
30 };
31
32 int run_add_p(struct repository *r, enum add_p_mode mode,
33               const char *revision, const struct pathspec *ps);
34
35 #endif