]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-clean.c
fast-import: introduce "feature notes" command
[thirdparty/git.git] / builtin-clean.c
CommitLineData
113f10f2
SB
1/*
2 * "git clean" builtin command
3 *
4 * Copyright (C) 2007 Shawn Bohrer
5 *
6 * Based on git-clean.sh by Pavel Roskin
7 */
8
9#include "builtin.h"
10#include "cache.h"
11#include "dir.h"
12#include "parse-options.h"
1fb32894 13#include "quote.h"
113f10f2 14
625db1b7 15static int force = -1; /* unset */
113f10f2
SB
16
17static const char *const builtin_clean_usage[] = {
1b1dd23f 18 "git clean [-d] [-f] [-n] [-q] [-x | -X] [--] <paths>...",
113f10f2
SB
19 NULL
20};
21
ef90d6d4 22static int git_clean_config(const char *var, const char *value, void *cb)
113f10f2
SB
23{
24 if (!strcmp(var, "clean.requireforce"))
25 force = !git_config_bool(var, value);
ef90d6d4 26 return git_default_config(var, value, cb);
113f10f2
SB
27}
28
29int cmd_clean(int argc, const char **argv, const char *prefix)
30{
d871c869 31 int i;
113f10f2 32 int show_only = 0, remove_directories = 0, quiet = 0, ignored = 0;
aa9c83c2 33 int ignored_only = 0, baselen = 0, config_set = 0, errors = 0;
a0f4afbe 34 int rm_flags = REMOVE_DIR_KEEP_NESTED_GIT;
f285a2d7 35 struct strbuf directory = STRBUF_INIT;
113f10f2 36 struct dir_struct dir;
113f10f2 37 static const char **pathspec;
f285a2d7 38 struct strbuf buf = STRBUF_INIT;
1fb32894 39 const char *qname;
d871c869 40 char *seen = NULL;
113f10f2
SB
41 struct option options[] = {
42 OPT__QUIET(&quiet),
43 OPT__DRY_RUN(&show_only),
f7aec129 44 OPT_BOOLEAN('f', "force", &force, "force"),
113f10f2
SB
45 OPT_BOOLEAN('d', NULL, &remove_directories,
46 "remove whole directories"),
47 OPT_BOOLEAN('x', NULL, &ignored, "remove ignored files, too"),
48 OPT_BOOLEAN('X', NULL, &ignored_only,
49 "remove only ignored files"),
50 OPT_END()
51 };
52
ef90d6d4 53 git_config(git_clean_config, NULL);
625db1b7
JH
54 if (force < 0)
55 force = 0;
56 else
57 config_set = 1;
58
37782920
SB
59 argc = parse_options(argc, argv, prefix, options, builtin_clean_usage,
60 0);
113f10f2
SB
61
62 memset(&dir, 0, sizeof(dir));
1617adc7 63 if (ignored_only)
7c4c97c0 64 dir.flags |= DIR_SHOW_IGNORED;
113f10f2
SB
65
66 if (ignored && ignored_only)
67 die("-x and -X cannot be used together");
68
69 if (!show_only && !force)
89c38500
MG
70 die("clean.requireForce %s to true and neither -n nor -f given; "
71 "refusing to clean", config_set ? "set" : "defaults");
113f10f2 72
a0f4afbe
JH
73 if (force > 1)
74 rm_flags = 0;
75
7c4c97c0 76 dir.flags |= DIR_SHOW_OTHER_DIRECTORIES;
113f10f2 77
c28b3d6e
NTND
78 if (read_cache() < 0)
79 die("index file corrupt");
80
1617adc7
SB
81 if (!ignored)
82 setup_standard_excludes(&dir);
113f10f2
SB
83
84 pathspec = get_pathspec(prefix, argv);
113f10f2 85
1d8842d9 86 fill_directory(&dir, pathspec);
113f10f2 87
d871c869 88 if (pathspec)
a8db80c2 89 seen = xmalloc(argc > 0 ? argc : 1);
d871c869
JH
90
91 for (i = 0; i < dir.nr; i++) {
92 struct dir_entry *ent = dir.entries[i];
f2d0df71
SB
93 int len, pos;
94 int matches = 0;
113f10f2
SB
95 struct cache_entry *ce;
96 struct stat st;
113f10f2
SB
97
98 /*
99 * Remove the '/' at the end that directory
100 * walking adds for directory entries.
101 */
102 len = ent->len;
103 if (len && ent->name[len-1] == '/')
104 len--;
105 pos = cache_name_pos(ent->name, len);
106 if (0 <= pos)
107 continue; /* exact match */
108 pos = -pos - 1;
109 if (pos < active_nr) {
110 ce = active_cache[pos];
111 if (ce_namelen(ce) == len &&
112 !memcmp(ce->name, ent->name, len))
113 continue; /* Yup, this one exists unmerged */
114 }
115
d871c869
JH
116 /*
117 * we might have removed this as part of earlier
118 * recursive directory removal, so lstat() here could
119 * fail with ENOENT.
120 */
121 if (lstat(ent->name, &st))
122 continue;
123
124 if (pathspec) {
a8db80c2 125 memset(seen, 0, argc > 0 ? argc : 1);
f2d0df71 126 matches = match_pathspec(pathspec, ent->name, len,
d871c869 127 baselen, seen);
d871c869
JH
128 }
129
130 if (S_ISDIR(st.st_mode)) {
113f10f2 131 strbuf_addstr(&directory, ent->name);
1fb32894 132 qname = quote_path_relative(directory.buf, directory.len, &buf, prefix);
f2d0df71
SB
133 if (show_only && (remove_directories ||
134 (matches == MATCHED_EXACTLY))) {
1fb32894 135 printf("Would remove %s\n", qname);
f2d0df71
SB
136 } else if (remove_directories ||
137 (matches == MATCHED_EXACTLY)) {
aa9c83c2 138 if (!quiet)
1fb32894 139 printf("Removing %s\n", qname);
a0f4afbe
JH
140 if (remove_dir_recursively(&directory,
141 rm_flags) != 0) {
1fb32894 142 warning("failed to remove '%s'", qname);
aa9c83c2
MV
143 errors++;
144 }
113f10f2 145 } else if (show_only) {
1fb32894 146 printf("Would not remove %s\n", qname);
113f10f2 147 } else {
1fb32894 148 printf("Not removing %s\n", qname);
113f10f2
SB
149 }
150 strbuf_reset(&directory);
151 } else {
d871c869
JH
152 if (pathspec && !matches)
153 continue;
1fb32894 154 qname = quote_path_relative(ent->name, -1, &buf, prefix);
113f10f2 155 if (show_only) {
1fb32894 156 printf("Would remove %s\n", qname);
113f10f2
SB
157 continue;
158 } else if (!quiet) {
1fb32894 159 printf("Removing %s\n", qname);
113f10f2 160 }
aa9c83c2 161 if (unlink(ent->name) != 0) {
1fb32894 162 warning("failed to remove '%s'", qname);
aa9c83c2
MV
163 errors++;
164 }
113f10f2
SB
165 }
166 }
d871c869 167 free(seen);
113f10f2
SB
168
169 strbuf_release(&directory);
aa9c83c2 170 return (errors != 0);
113f10f2 171}