diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2015-06-29 19:51:18 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-06-29 08:48:44 -0700 |
commit | df0b6cfbda88144714541664fb501146d6465a82 (patch) | |
tree | 9acade77a77e010352979754ed9427b0b3ca9f1a /builtin/gc.c | |
parent | e1c1ab9d25864e8de0009f3f3149ec4386a14bf8 (diff) | |
download | git-df0b6cfbda88144714541664fb501146d6465a82.tar.gz |
worktree: new place for "git prune --worktrees"nd/multiple-work-trees
Commit 23af91d (prune: strategies for linked checkouts - 2014-11-30)
adds "--worktrees" to "git prune" without realizing that "git prune" is
for object database only. This patch moves the same functionality to a
new command "git worktree".
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Diffstat (limited to 'builtin/gc.c')
-rw-r--r-- | builtin/gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/gc.c b/builtin/gc.c index fa87ad355c..44b206acad 100644 --- a/builtin/gc.c +++ b/builtin/gc.c @@ -293,7 +293,7 @@ int cmd_gc(int argc, const char **argv, const char *prefix) argv_array_pushl(&reflog, "reflog", "expire", "--all", NULL); argv_array_pushl(&repack, "repack", "-d", "-l", NULL); argv_array_pushl(&prune, "prune", "--expire", NULL); - argv_array_pushl(&prune_worktrees, "prune", "--worktrees", "--expire", NULL); + argv_array_pushl(&prune_worktrees, "worktree", "prune", "--expire", NULL); argv_array_pushl(&rerere, "rerere", "gc", NULL); gc_config(); |