Start the 2.46 cycle
[git.git] / Documentation / gitrepository-layout.txt
blob949cd8a31e9a9e896ccec63d5c7e2f23f740973a
1 gitrepository-layout(5)
2 =======================
4 NAME
5 ----
6 gitrepository-layout - Git Repository Layout
8 SYNOPSIS
9 --------
10 $GIT_DIR/*
12 DESCRIPTION
13 -----------
15 A Git repository comes in two different flavours:
17  * a `.git` directory at the root of the working tree;
19  * a `<project>.git` directory that is a 'bare' repository
20    (i.e. without its own working tree), that is typically used for
21    exchanging histories with others by pushing into it and fetching
22    from it.
24 *Note*: Also you can have a plain text file `.git` at the root of
25 your working tree, containing `gitdir: <path>` to point at the real
26 directory that has the repository.
27 This mechanism is called a 'gitfile' and is usually managed via the
28 `git submodule` and `git worktree` commands. It is often used for
29 a working tree of a submodule checkout, to allow you in the
30 containing superproject to `git checkout` a branch that does not
31 have the submodule.  The `checkout` has to remove the entire
32 submodule working tree, without losing the submodule repository.
34 These things may exist in a Git repository.
36 objects::
37         Object store associated with this repository.  Usually
38         an object store is self sufficient (i.e. all the objects
39         that are referred to by an object found in it are also
40         found in it), but there are a few ways to violate it.
42 . You could have an incomplete but locally usable repository
43 by creating a shallow clone.  See linkgit:git-clone[1].
44 . You could be using the `objects/info/alternates` or
45 `$GIT_ALTERNATE_OBJECT_DIRECTORIES` mechanisms to 'borrow'
46 objects from other object stores.  A repository with this kind
47 of incomplete object store is not suitable to be published for
48 use with dumb transports but otherwise is OK as long as
49 `objects/info/alternates` points at the object stores it
50 borrows from.
52 This directory is ignored if $GIT_COMMON_DIR is set and
53 "$GIT_COMMON_DIR/objects" will be used instead.
55 objects/[0-9a-f][0-9a-f]::
56         A newly created object is stored in its own file.
57         The objects are splayed over 256 subdirectories using
58         the first two characters of the sha1 object name to
59         keep the number of directory entries in `objects`
60         itself to a manageable number. Objects found
61         here are often called 'unpacked' (or 'loose') objects.
63 objects/pack::
64         Packs (files that store many objects in compressed form,
65         along with index files to allow them to be randomly
66         accessed) are found in this directory.
68 objects/info::
69         Additional information about the object store is
70         recorded in this directory.
72 objects/info/packs::
73         This file is to help dumb transports discover what packs
74         are available in this object store.  Whenever a pack is
75         added or removed, `git update-server-info` should be run
76         to keep this file up to date if the repository is
77         published for dumb transports.  'git repack' does this
78         by default.
80 objects/info/alternates::
81         This file records paths to alternate object stores that
82         this object store borrows objects from, one pathname per
83         line. Note that not only native Git tools use it locally,
84         but the HTTP fetcher also tries to use it remotely; this
85         will usually work if you have relative paths (relative
86         to the object database, not to the repository!) in your
87         alternates file, but it will not work if you use absolute
88         paths unless the absolute path in filesystem and web URL
89         is the same. See also `objects/info/http-alternates`.
91 objects/info/http-alternates::
92         This file records URLs to alternate object stores that
93         this object store borrows objects from, to be used when
94         the repository is fetched over HTTP.
96 refs::
97         References are stored in subdirectories of this
98         directory.  The 'git prune' command knows to preserve
99         objects reachable from refs found in this directory and
100         its subdirectories.
101         This directory is ignored (except refs/bisect,
102         refs/rewritten and refs/worktree) if $GIT_COMMON_DIR is
103         set and "$GIT_COMMON_DIR/refs" will be used instead.
105 refs/heads/`name`::
106         records tip-of-the-tree commit objects of branch `name`
108 refs/tags/`name`::
109         records any object name (not necessarily a commit
110         object, or a tag object that points at a commit object).
112 refs/remotes/`name`::
113         records tip-of-the-tree commit objects of branches copied
114         from a remote repository.
116 refs/replace/`<obj-sha1>`::
117         records the SHA-1 of the object that replaces `<obj-sha1>`.
118         This is similar to info/grafts and is internally used and
119         maintained by linkgit:git-replace[1]. Such refs can be exchanged
120         between repositories while grafts are not.
122 packed-refs::
123         records the same information as refs/heads/, refs/tags/,
124         and friends record in a more efficient way.  See
125         linkgit:git-pack-refs[1]. This file is ignored if $GIT_COMMON_DIR
126         is set and "$GIT_COMMON_DIR/packed-refs" will be used instead.
128 HEAD::
129         A symref (see glossary) to the `refs/heads/` namespace
130         describing the currently active branch.  It does not mean
131         much if the repository is not associated with any working tree
132         (i.e. a 'bare' repository), but a valid Git repository
133         *must* have the HEAD file; some porcelains may use it to
134         guess the designated "default" branch of the repository
135         (usually 'master').  It is legal if the named branch
136         'name' does not (yet) exist.  In some legacy setups, it is
137         a symbolic link instead of a symref that points at the current
138         branch.
140 HEAD can also record a specific commit directly, instead of
141 being a symref to point at the current branch.  Such a state
142 is often called 'detached HEAD.'  See linkgit:git-checkout[1]
143 for details.
145 config::
146         Repository specific configuration file. This file is ignored
147         if $GIT_COMMON_DIR is set and "$GIT_COMMON_DIR/config" will be
148         used instead.
150 config.worktree::
151         Working directory specific configuration file for the main
152         working directory in multiple working directory setup (see
153         linkgit:git-worktree[1]).
155 branches::
156         A slightly deprecated way to store shorthands to be used
157         to specify a URL to 'git fetch', 'git pull' and 'git push'.
158         A file can be stored as `branches/<name>` and then
159         'name' can be given to these commands in place of
160         'repository' argument.  See the REMOTES section in
161         linkgit:git-fetch[1] for details.  This mechanism is legacy
162         and not likely to be found in modern repositories. This
163         directory is ignored if $GIT_COMMON_DIR is set and
164         "$GIT_COMMON_DIR/branches" will be used instead.
167 hooks::
168         Hooks are customization scripts used by various Git
169         commands.  A handful of sample hooks are installed when
170         'git init' is run, but all of them are disabled by
171         default.  To enable, the `.sample` suffix has to be
172         removed from the filename by renaming.
173         Read linkgit:githooks[5] for more details about
174         each hook. This directory is ignored if $GIT_COMMON_DIR is set
175         and "$GIT_COMMON_DIR/hooks" will be used instead.
177 common::
178         When multiple working trees are used, most of files in
179         $GIT_DIR are per-worktree with a few known exceptions. All
180         files under 'common' however will be shared between all
181         working trees.
183 index::
184         The current index file for the repository.  It is
185         usually not found in a bare repository.
187 sharedindex.<SHA-1>::
188         The shared index part, to be referenced by $GIT_DIR/index and
189         other temporary index files. Only valid in split index mode.
191 info::
192         Additional information about the repository is recorded
193         in this directory. This directory is ignored if $GIT_COMMON_DIR
194         is set and "$GIT_COMMON_DIR/info" will be used instead.
196 info/refs::
197         This file helps dumb transports discover what refs are
198         available in this repository.  If the repository is
199         published for dumb transports, this file should be
200         regenerated by 'git update-server-info' every time a tag
201         or branch is created or modified.  This is normally done
202         from the `hooks/update` hook, which is run by the
203         'git-receive-pack' command when you 'git push' into the
204         repository.
206 info/grafts::
207         This file records fake commit ancestry information, to
208         pretend the set of parents a commit has is different
209         from how the commit was actually created.  One record
210         per line describes a commit and its fake parents by
211         listing their 40-byte hexadecimal object names separated
212         by a space and terminated by a newline.
214 Note that the grafts mechanism is outdated and can lead to problems
215 transferring objects between repositories; see linkgit:git-replace[1]
216 for a more flexible and robust system to do the same thing.
218 info/exclude::
219         This file, by convention among Porcelains, stores the
220         exclude pattern list. `.gitignore` is the per-directory
221         ignore file.  'git status', 'git add', 'git rm' and
222         'git clean' look at it but the core Git commands do not look
223         at it.  See also: linkgit:gitignore[5].
225 info/attributes::
226         Defines which attributes to assign to a path, similar to per-directory
227         `.gitattributes` files.   See also: linkgit:gitattributes[5].
229 info/sparse-checkout::
230         This file stores sparse checkout patterns.
231         See also: linkgit:git-read-tree[1].
233 remotes::
234         Stores shorthands for URL and default refnames for use
235         when interacting with remote repositories via 'git fetch',
236         'git pull' and 'git push' commands.  See the REMOTES section
237         in linkgit:git-fetch[1] for details.  This mechanism is legacy
238         and not likely to be found in modern repositories. This
239         directory is ignored if $GIT_COMMON_DIR is set and
240         "$GIT_COMMON_DIR/remotes" will be used instead.
242 logs::
243         Records of changes made to refs are stored in this directory.
244         See linkgit:git-update-ref[1] for more information. This
245         directory is ignored (except logs/HEAD) if $GIT_COMMON_DIR is
246         set and "$GIT_COMMON_DIR/logs" will be used instead.
248 logs/refs/heads/`name`::
249         Records all changes made to the branch tip named `name`.
251 logs/refs/tags/`name`::
252         Records all changes made to the tag named `name`.
254 shallow::
255         This is similar to `info/grafts` but is internally used
256         and maintained by shallow clone mechanism.  See `--depth`
257         option to linkgit:git-clone[1] and linkgit:git-fetch[1]. This
258         file is ignored if $GIT_COMMON_DIR is set and
259         "$GIT_COMMON_DIR/shallow" will be used instead.
261 commondir::
262         If this file exists, $GIT_COMMON_DIR (see linkgit:git[1]) will
263         be set to the path specified in this file if it is not
264         explicitly set. If the specified path is relative, it is
265         relative to $GIT_DIR. The repository with commondir is
266         incomplete without the repository pointed by "commondir".
268 modules::
269         Contains the git-repositories of the submodules.
271 worktrees::
272         Contains administrative data for linked
273         working trees. Each subdirectory contains the working tree-related
274         part of a linked working tree. This directory is ignored if
275         $GIT_COMMON_DIR is set, in which case
276         "$GIT_COMMON_DIR/worktrees" will be used instead.
278 worktrees/<id>/gitdir::
279         A text file containing the absolute path back to the .git file
280         that points to here. This is used to check if the linked
281         repository has been manually removed and there is no need to
282         keep this directory any more. The mtime of this file should be
283         updated every time the linked repository is accessed.
285 worktrees/<id>/locked::
286         If this file exists, the linked working tree may be on a
287         portable device and not available. The presence of this file
288         prevents `worktrees/<id>` from being pruned either automatically
289         or manually by `git worktree prune`. The file may contain a string
290         explaining why the repository is locked.
292 worktrees/<id>/config.worktree::
293         Working directory specific configuration file.
295 include::technical/repository-version.txt[]
297 SEE ALSO
298 --------
299 linkgit:git-init[1],
300 linkgit:git-clone[1],
301 linkgit:git-fetch[1],
302 linkgit:git-pack-refs[1],
303 linkgit:git-gc[1],
304 linkgit:git-checkout[1],
305 linkgit:gitglossary[7],
306 link:user-manual.html[The Git User's Manual]
310 Part of the linkgit:git[1] suite