]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-pack-refs.txt
t4034: abstract away SHA-1-specific constants
[thirdparty/git.git] / Documentation / git-pack-refs.txt
CommitLineData
d28f7cb9
JH
1git-pack-refs(1)
2================
3
4NAME
5----
6git-pack-refs - Pack heads and tags for efficient repository access
7
8SYNOPSIS
9--------
7791a1d9 10[verse]
b1889c36 11'git pack-refs' [--all] [--no-prune]
d28f7cb9
JH
12
13DESCRIPTION
14-----------
15
16Traditionally, tips of branches and tags (collectively known as
831e61f8
JH
17'refs') were stored one file per ref in a (sub)directory
18under `$GIT_DIR/refs`
d28f7cb9
JH
19directory. While many branch tips tend to be updated often,
20most tags and some branch tips are never updated. When a
21repository has hundreds or thousands of tags, this
22one-file-per-ref format both wastes storage and hurts
23performance.
24
25This command is used to solve the storage and performance
831e61f8 26problem by storing the refs in a single file,
d28f7cb9 27`$GIT_DIR/packed-refs`. When a ref is missing from the
831e61f8
JH
28traditional `$GIT_DIR/refs` directory hierarchy, it is looked
29up in this
d28f7cb9
JH
30file and used if found.
31
38b7ccbe 32Subsequent updates to branches always create new files under
831e61f8 33`$GIT_DIR/refs` directory hierarchy.
d28f7cb9 34
af67e91c 35A recommended practice to deal with a repository with too many
4a81bfa1
JM
36refs is to pack its refs with `--all` once, and
37occasionally run `git pack-refs`. Tags are by
af67e91c
JH
38definition stationary and are not expected to change. Branch
39heads will be packed with the initial `pack-refs --all`, but
40only the currently active branch heads will become unpacked,
38b7ccbe 41and the next `pack-refs` (without `--all`) will leave them
af67e91c
JH
42unpacked.
43
44
d28f7cb9
JH
45OPTIONS
46-------
47
3240240f 48--all::
d28f7cb9 49
af67e91c
JH
50The command by default packs all tags and refs that are already
51packed, and leaves other refs
d28f7cb9
JH
52alone. This is because branches are expected to be actively
53developed and packing their tips does not help performance.
54This option causes branch tips to be packed as well. Useful for
55a repository with many branches of historical interests.
56
3240240f 57--no-prune::
0f018bab
JH
58
59The command usually removes loose refs under `$GIT_DIR/refs`
60hierarchy after packing them. This option tells it not to.
d28f7cb9 61
831e61f8
JH
62
63BUGS
64----
65
66Older documentation written before the packed-refs mechanism was
67introduced may still say things like ".git/refs/heads/<branch> file
68exists" when it means "branch <branch> exists".
69
70
d28f7cb9
JH
71GIT
72---
9e1f0a85 73Part of the linkgit:git[1] suite