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 repository-layout[1] for description of what they are for:
26
27
28 · objects/info/packs
29
30 · info/refs
31
33 When you remove an existing ref, the command fails to update info/refs
34 file unless --force flag is given.
35
37 Written by Junio C Hamano <junkio@cox.net>
38
40 Documentation by Junio C Hamano.
41
43 Part of the git(7) suite
44
46 1. repository-layout
47 repository-layout.html
48
49
50
51 GIT-UPDATE-SERVER()