blob: 35d27b0c7f0e4b7a1d0851140958e71fabb0e6bc [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-update-server-info(1)
2=========================
3
4NAME
5----
6git-update-server-info - Update auxiliary info file to help dumb servers
7
8
9SYNOPSIS
10--------
Junio C Hamanofce7c7e2008-07-02 03:06:3811'git update-server-info' [--force]
Junio C Hamano1a4e8412005-12-27 08:17:2312
13DESCRIPTION
14-----------
15A dumb server that does not do on-the-fly pack generations must
16have some auxiliary information files in $GIT_DIR/info and
17$GIT_OBJECT_DIRECTORY/info directories to help clients discover
18what references and packs the server has. This command
19generates such auxiliary files.
20
21
22OPTIONS
23-------
24
Junio C Hamanoeb415992008-06-08 22:49:4725-f::
26--force::
Junio C Hamano1a4e8412005-12-27 08:17:2327Update the info files from scratch.
28
29
30OUTPUT
31------
32
33Currently the command updates the following files. Please see
Junio C Hamanofce7c7e2008-07-02 03:06:3834linkgit:gitrepository-layout[5] for description of
Junio C Hamanof7c042d2008-06-06 22:50:5335what they are for:
Junio C Hamano1a4e8412005-12-27 08:17:2336
37* objects/info/packs
38
39* info/refs
40
41
42BUGS
43----
44When you remove an existing ref, the command fails to update
45info/refs file unless `--force` flag is given.
46
47
48Author
49------
Junio C Hamano0868a302008-07-22 09:20:4450Written by Junio C Hamano <gitster@pobox.com>
Junio C Hamano1a4e8412005-12-27 08:17:2351
52Documentation
53--------------
54Documentation by Junio C Hamano.
55
56GIT
57---
Junio C Hamanof7c042d2008-06-06 22:50:5358Part of the linkgit:git[1] suite