1GIT-UPDATE-SERVER() GIT-UPDATE-SERVER()
2
3
4
6 git-update-server-info - Update auxiliary info file to help dumb
7 servers
8
10 git update-server-info [--force]
11
13 A dumb server that does not do on-the-fly pack generations must have
14 some auxiliary information files in $GIT_DIR/info and
15 $GIT_OBJECT_DIRECTORY/info directories to help clients discover what
16 references and packs the server has. This command generates such
17 auxiliary files.
18
20 -f, --force
21 Update the info files from scratch.
22
24 Currently the command updates the following files. Please see
25 gitrepository-layout(5) for description of what they are for:
26
27 · objects/info/packs
28
29 · info/refs
30
32 Written by Junio C Hamano <gitster@pobox.com[1]>
33
35 Documentation by Junio C Hamano.
36
38 Part of the git(1) suite
39
41 1. gitster@pobox.com
42 mailto:gitster@pobox.com
43
44
45
46 GIT-UPDATE-SERVER()