Skip to content

Commit

Permalink
Also use 'track_object_refs = 0' in update-server-info.
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Oct 8, 2005
1 parent f22ca7c commit d119e3d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions update-server-info.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "cache.h"
#include "object.h"

static const char update_server_info_usage[] =
"git-update-server-info [--force]";
Expand All @@ -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]) ||
Expand Down

0 comments on commit d119e3d

Please sign in to comment.