From d119e3de13ea1493107bd57381d0ce9c9dd90976 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 8 Oct 2005 15:54:35 -0700 Subject: [PATCH] Also use 'track_object_refs = 0' in update-server-info. Signed-off-by: Junio C Hamano --- update-server-info.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/update-server-info.c b/update-server-info.c index e824f62e..b7085637 100644 --- a/update-server-info.c +++ b/update-server-info.c @@ -1,4 +1,5 @@ #include "cache.h" +#include "object.h" static const char update_server_info_usage[] = "git-update-server-info [--force]"; @@ -7,6 +8,8 @@ int main(int ac, char **av) { int i; int force = 0; + track_object_refs = 0; + for (i = 1; i < ac; i++) { if (av[i][0] == '-') { if (!strcmp("--force", av[i]) || -- 2.11.0