]> git.ipfire.org Git - thirdparty/git.git/blob - builtin-runstatus.c
Remove a CURLOPT_HTTPHEADER (un)setting
[thirdparty/git.git] / builtin-runstatus.c
1 #include "builtin.h"
2 #include "cache.h"
3 #include "wt-status.h"
4
5 extern int wt_status_use_color;
6
7 static const char runstatus_usage[] =
8 "git-runstatus [--color|--nocolor] [--amend] [--verbose] [--untracked]";
9
10 int cmd_runstatus(int argc, const char **argv, const char *prefix)
11 {
12 struct wt_status s;
13 int i;
14
15 git_config(git_status_config);
16 wt_status_prepare(&s);
17 s.prefix = prefix;
18
19 for (i = 1; i < argc; i++) {
20 if (!strcmp(argv[i], "--color"))
21 wt_status_use_color = 1;
22 else if (!strcmp(argv[i], "--nocolor"))
23 wt_status_use_color = 0;
24 else if (!strcmp(argv[i], "--amend")) {
25 s.amend = 1;
26 s.reference = "HEAD^1";
27 }
28 else if (!strcmp(argv[i], "--verbose"))
29 s.verbose = 1;
30 else if (!strcmp(argv[i], "--untracked"))
31 s.untracked = 1;
32 else
33 usage(runstatus_usage);
34 }
35
36 wt_status_print(&s);
37 return s.commitable ? 0 : 1;
38 }