summaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authorRene Scharfe <rene.scharfe@lsrfire.ath.cx>2006-10-08 13:44:50 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-10-08 19:43:07 (GMT)
commit9cb90b80fc1ec09d8e51451b18a7c8ef7eac8908 (patch)
treebccaa6f37bf4b99089fd16042319ad147648cb6b /git.c
parent7a0cf2d0138cf3abd3f2c3c9a1aa4dc55bf0700f (diff)
downloadgit-9cb90b80fc1ec09d8e51451b18a7c8ef7eac8908.zip
git-9cb90b80fc1ec09d8e51451b18a7c8ef7eac8908.tar.gz
git-9cb90b80fc1ec09d8e51451b18a7c8ef7eac8908.tar.bz2
git-tar-tree: don't RUN_SETUP
Noted by Jiri Slaby, git-tar-tree --remote doesn't need to be run from inside of a git archive. Since git-tar-tree is now only a wrapper for git-archive, which calls setup_git_directory() as needed, we should drop the flag RUN_SETUP. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git.c')
-rw-r--r--git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/git.c b/git.c
index b8e8622..d7103a4 100644
--- a/git.c
+++ b/git.c
@@ -258,7 +258,7 @@ static void handle_internal_command(int argc, const char **argv, char **envp)
{ "show", cmd_show, RUN_SETUP | USE_PAGER },
{ "stripspace", cmd_stripspace },
{ "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
- { "tar-tree", cmd_tar_tree, RUN_SETUP },
+ { "tar-tree", cmd_tar_tree },
{ "unpack-objects", cmd_unpack_objects, RUN_SETUP },
{ "update-index", cmd_update_index, RUN_SETUP },
{ "update-ref", cmd_update_ref, RUN_SETUP },