git-mv: succeed even if source is a prefix of destination
[gitweb.git] / git.c
diff --git a/git.c b/git.c
index 5b50762de179607df488feb2becd531ee3d3fea6..18ba14ade1bb60b59fd0288130ba098e9e76dac3 100644 (file)
--- a/git.c
+++ b/git.c
@@ -229,7 +229,7 @@ static void handle_internal_command(int argc, const char **argv, char **envp)
                { "log", cmd_log, NEEDS_PREFIX | USE_PAGER },
                { "whatchanged", cmd_whatchanged, NEEDS_PREFIX | USE_PAGER },
                { "show", cmd_show, NEEDS_PREFIX | USE_PAGER },
-               { "push", cmd_push },
+               { "push", cmd_push, NEEDS_PREFIX },
                { "format-patch", cmd_format_patch, NEEDS_PREFIX },
                { "count-objects", cmd_count_objects },
                { "diff", cmd_diff, NEEDS_PREFIX },
@@ -264,6 +264,7 @@ static void handle_internal_command(int argc, const char **argv, char **envp)
                { "prune", cmd_prune, NEEDS_PREFIX },
                { "mv", cmd_mv, NEEDS_PREFIX },
                { "prune-packed", cmd_prune_packed, NEEDS_PREFIX },
+               { "repo-config", cmd_repo_config },
        };
        int i;