aboutsummaryrefslogtreecommitdiff
path: root/builtin.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2006-07-06 10:16:22 -0700
committerJunio C Hamano <junkio@cox.net>2006-07-09 00:57:22 -0700
commitba84a797e76c27932e0b317c7ce54925e81093f7 (patch)
tree7236401136c1c8195008556a5e0eac087e04cc15 /builtin.h
parent88f0d5d7d95f815d2e8a36a8ceb7459dbd90992c (diff)
downloadgit-ba84a797e76c27932e0b317c7ce54925e81093f7.tar.gz
git-ba84a797e76c27932e0b317c7ce54925e81093f7.tar.xz
builtin "git prune"
This actually removes the objects to be pruned, unless you specify "-n" (at which point it will just tell you which files it would prune). This doesn't do the pack-file pruning that the shell-script used to do, but if somebody really wants to, they could add it easily enough. I wonder how useful it is, though, considering that "git repack -a -d" is just a lot more efficient and generates a better end result. Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin.h')
-rw-r--r--builtin.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin.h b/builtin.h
index d9e5483bd..5339d8627 100644
--- a/builtin.h
+++ b/builtin.h
@@ -25,6 +25,8 @@ extern int cmd_diff(int argc, const char **argv, char **envp);
extern int cmd_format_patch(int argc, const char **argv, char **envp);
extern int cmd_count_objects(int argc, const char **argv, char **envp);
+extern int cmd_prune(int argc, const char **argv, char **envp);
+
extern int cmd_push(int argc, const char **argv, char **envp);
extern int cmd_grep(int argc, const char **argv, char **envp);
extern int cmd_rm(int argc, const char **argv, char **envp);