Documentation/RelNotes/2.45.0.txt: fix typo
[git.git] / Documentation / git-update-server-info.txt
blob6bc9b50d89f7aac6921e6b9fd9b2659d1d81d3af
1 git-update-server-info(1)
2 =========================
4 NAME
5 ----
6 git-update-server-info - Update auxiliary info file to help dumb servers
9 SYNOPSIS
10 --------
11 [verse]
12 'git update-server-info' [-f | --force]
14 DESCRIPTION
15 -----------
16 A dumb server that does not do on-the-fly pack generations must
17 have some auxiliary information files in $GIT_DIR/info and
18 $GIT_OBJECT_DIRECTORY/info directories to help clients discover
19 what references and packs the server has.  This command
20 generates such auxiliary files.
22 OPTIONS
23 -------
24 -f::
25 --force::
26         Update the info files from scratch.
28 OUTPUT
29 ------
31 Currently the command updates the following files.  Please see
32 linkgit:gitrepository-layout[5] for a description of
33 what they are for:
35 * objects/info/packs
37 * info/refs
39 GIT
40 ---
41 Part of the linkgit:git[1] suite