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 [-f | --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 Part of the git(1) suite
33
34
35
36 GIT-UPDATE-SERVER()