2007-11-12 02:48:47 +01:00
|
|
|
/*
|
|
|
|
* "git clean" builtin command
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Shawn Bohrer
|
|
|
|
*
|
|
|
|
* Based on git-clean.sh by Pavel Roskin
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "builtin.h"
|
|
|
|
#include "cache.h"
|
|
|
|
#include "dir.h"
|
|
|
|
#include "parse-options.h"
|
|
|
|
|
2007-11-13 06:13:05 +01:00
|
|
|
static int force = -1; /* unset */
|
2007-11-12 02:48:47 +01:00
|
|
|
|
|
|
|
static const char *const builtin_clean_usage[] = {
|
|
|
|
"git-clean [-d] [-f] [-n] [-q] [-x | -X] [--] <paths>...",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int git_clean_config(const char *var, const char *value)
|
|
|
|
{
|
|
|
|
if (!strcmp(var, "clean.requireforce"))
|
|
|
|
force = !git_config_bool(var, value);
|
2007-11-15 06:00:54 +01:00
|
|
|
return git_default_config(var, value);
|
2007-11-12 02:48:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int cmd_clean(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2007-12-05 08:55:41 +01:00
|
|
|
int i;
|
2007-11-12 02:48:47 +01:00
|
|
|
int show_only = 0, remove_directories = 0, quiet = 0, ignored = 0;
|
2007-11-13 06:13:05 +01:00
|
|
|
int ignored_only = 0, baselen = 0, config_set = 0;
|
2007-11-12 02:48:47 +01:00
|
|
|
struct strbuf directory;
|
|
|
|
struct dir_struct dir;
|
|
|
|
const char *path, *base;
|
|
|
|
static const char **pathspec;
|
2007-12-05 08:55:41 +01:00
|
|
|
char *seen = NULL;
|
2007-11-12 02:48:47 +01:00
|
|
|
struct option options[] = {
|
|
|
|
OPT__QUIET(&quiet),
|
|
|
|
OPT__DRY_RUN(&show_only),
|
|
|
|
OPT_BOOLEAN('f', NULL, &force, "force"),
|
|
|
|
OPT_BOOLEAN('d', NULL, &remove_directories,
|
|
|
|
"remove whole directories"),
|
|
|
|
OPT_BOOLEAN('x', NULL, &ignored, "remove ignored files, too"),
|
|
|
|
OPT_BOOLEAN('X', NULL, &ignored_only,
|
|
|
|
"remove only ignored files"),
|
|
|
|
OPT_END()
|
|
|
|
};
|
|
|
|
|
|
|
|
git_config(git_clean_config);
|
2007-11-13 06:13:05 +01:00
|
|
|
if (force < 0)
|
|
|
|
force = 0;
|
|
|
|
else
|
|
|
|
config_set = 1;
|
|
|
|
|
2007-11-12 02:48:47 +01:00
|
|
|
argc = parse_options(argc, argv, options, builtin_clean_usage, 0);
|
|
|
|
|
|
|
|
memset(&dir, 0, sizeof(dir));
|
2007-11-15 06:00:54 +01:00
|
|
|
if (ignored_only)
|
|
|
|
dir.show_ignored = 1;
|
2007-11-12 02:48:47 +01:00
|
|
|
|
|
|
|
if (ignored && ignored_only)
|
|
|
|
die("-x and -X cannot be used together");
|
|
|
|
|
|
|
|
if (!show_only && !force)
|
2007-11-13 06:13:05 +01:00
|
|
|
die("clean.requireForce%s set and -n or -f not given; "
|
|
|
|
"refusing to clean", config_set ? "" : " not");
|
2007-11-12 02:48:47 +01:00
|
|
|
|
|
|
|
dir.show_other_directories = 1;
|
|
|
|
|
2007-11-15 06:00:54 +01:00
|
|
|
if (!ignored)
|
|
|
|
setup_standard_excludes(&dir);
|
2007-11-12 02:48:47 +01:00
|
|
|
|
|
|
|
pathspec = get_pathspec(prefix, argv);
|
|
|
|
read_cache();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate common prefix for the pathspec, and
|
|
|
|
* use that to optimize the directory walk
|
|
|
|
*/
|
|
|
|
baselen = common_prefix(pathspec);
|
|
|
|
path = ".";
|
|
|
|
base = "";
|
|
|
|
if (baselen)
|
|
|
|
path = base = xmemdupz(*pathspec, baselen);
|
|
|
|
read_directory(&dir, path, base, baselen, pathspec);
|
|
|
|
strbuf_init(&directory, 0);
|
|
|
|
|
2007-12-05 08:55:41 +01:00
|
|
|
if (pathspec)
|
|
|
|
seen = xmalloc(argc);
|
|
|
|
|
|
|
|
for (i = 0; i < dir.nr; i++) {
|
|
|
|
struct dir_entry *ent = dir.entries[i];
|
|
|
|
int len, pos, matches;
|
2007-11-12 02:48:47 +01:00
|
|
|
struct cache_entry *ce;
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove the '/' at the end that directory
|
|
|
|
* walking adds for directory entries.
|
|
|
|
*/
|
|
|
|
len = ent->len;
|
|
|
|
if (len && ent->name[len-1] == '/')
|
|
|
|
len--;
|
|
|
|
pos = cache_name_pos(ent->name, len);
|
|
|
|
if (0 <= pos)
|
|
|
|
continue; /* exact match */
|
|
|
|
pos = -pos - 1;
|
|
|
|
if (pos < active_nr) {
|
|
|
|
ce = active_cache[pos];
|
|
|
|
if (ce_namelen(ce) == len &&
|
|
|
|
!memcmp(ce->name, ent->name, len))
|
|
|
|
continue; /* Yup, this one exists unmerged */
|
|
|
|
}
|
|
|
|
|
2007-12-05 08:55:41 +01:00
|
|
|
/*
|
|
|
|
* we might have removed this as part of earlier
|
|
|
|
* recursive directory removal, so lstat() here could
|
|
|
|
* fail with ENOENT.
|
|
|
|
*/
|
|
|
|
if (lstat(ent->name, &st))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (pathspec) {
|
|
|
|
memset(seen, 0, argc);
|
|
|
|
matches = match_pathspec(pathspec, ent->name, ent->len,
|
|
|
|
baselen, seen);
|
|
|
|
} else {
|
|
|
|
matches = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (S_ISDIR(st.st_mode)) {
|
2007-11-12 02:48:47 +01:00
|
|
|
strbuf_addstr(&directory, ent->name);
|
2007-12-05 08:55:41 +01:00
|
|
|
if (show_only && (remove_directories || matches)) {
|
2007-11-12 02:48:47 +01:00
|
|
|
printf("Would remove %s\n", directory.buf);
|
2007-12-05 08:55:41 +01:00
|
|
|
} else if (quiet && (remove_directories || matches)) {
|
2007-11-12 02:48:47 +01:00
|
|
|
remove_dir_recursively(&directory, 0);
|
2007-12-05 08:55:41 +01:00
|
|
|
} else if (remove_directories || matches) {
|
2007-11-12 02:48:47 +01:00
|
|
|
printf("Removing %s\n", directory.buf);
|
|
|
|
remove_dir_recursively(&directory, 0);
|
|
|
|
} else if (show_only) {
|
|
|
|
printf("Would not remove %s\n", directory.buf);
|
|
|
|
} else {
|
|
|
|
printf("Not removing %s\n", directory.buf);
|
|
|
|
}
|
|
|
|
strbuf_reset(&directory);
|
|
|
|
} else {
|
2007-12-05 08:55:41 +01:00
|
|
|
if (pathspec && !matches)
|
|
|
|
continue;
|
2007-11-12 02:48:47 +01:00
|
|
|
if (show_only) {
|
|
|
|
printf("Would remove %s\n", ent->name);
|
|
|
|
continue;
|
|
|
|
} else if (!quiet) {
|
|
|
|
printf("Removing %s\n", ent->name);
|
|
|
|
}
|
|
|
|
unlink(ent->name);
|
|
|
|
}
|
|
|
|
}
|
2007-12-05 08:55:41 +01:00
|
|
|
free(seen);
|
2007-11-12 02:48:47 +01:00
|
|
|
|
|
|
|
strbuf_release(&directory);
|
|
|
|
return 0;
|
|
|
|
}
|