summaryrefslogtreecommitdiff
path: root/builtin.h
diff options
context:
space:
mode:
authorShawn Bohrer <shawn.bohrer@gmail.com>2007-11-12 01:48:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-19 03:11:42 (GMT)
commit113f10f22f4b3b599e44e192e241e0bace9cc39e (patch)
tree83fdfa4897870cb07cea1ea4b8afa129e0c50e34 /builtin.h
parentea55960518bb104020c02aa2f64b33f93d1775e7 (diff)
downloadgit-113f10f22f4b3b599e44e192e241e0bace9cc39e.zip
git-113f10f22f4b3b599e44e192e241e0bace9cc39e.tar.gz
git-113f10f22f4b3b599e44e192e241e0bace9cc39e.tar.bz2
Make git-clean a builtin
This replaces git-clean.sh with builtin-clean.c, and moves git-clean.sh to the examples. This also introduces a change in behavior when removing directories explicitly specified as a path. For example currently: 1. When dir has only untracked files, these two behave differently: $ git clean -n dir $ git clean -n dir/ the former says "Would not remove dir/", while the latter would say "Would remove dir/untracked" for all paths under it, but not the directory itself. With -d, the former would stop refusing, however since the user explicitly asked to remove the directory the -d is no longer required. 2. When there are more parameters: $ git clean -n dir foo $ git clean -n dir/ foo both cases refuse to remove dir/ unless -d is specified. Once again since both cases requested to remove dir the -d is no longer required. Thanks to Johannes Schindelin for the conversion to using the parse-options API. Signed-off-by: Shawn Bohrer <shawn.bohrer@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin.h')
-rw-r--r--builtin.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin.h b/builtin.h
index 9a6213a..8248f29 100644
--- a/builtin.h
+++ b/builtin.h
@@ -24,6 +24,7 @@ extern int cmd_check_attr(int argc, const char **argv, const char *prefix);
extern int cmd_check_ref_format(int argc, const char **argv, const char *prefix);
extern int cmd_cherry(int argc, const char **argv, const char *prefix);
extern int cmd_cherry_pick(int argc, const char **argv, const char *prefix);
+extern int cmd_clean(int argc, const char **argv, const char *prefix);
extern int cmd_commit_tree(int argc, const char **argv, const char *prefix);
extern int cmd_count_objects(int argc, const char **argv, const char *prefix);
extern int cmd_describe(int argc, const char **argv, const char *prefix);