X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Documentation%2Frepository-layout.txt;h=b52dfdc3081537c68f2fb12635fc986b0221dd4a;hb=4514ad4fb77b3c68f69133c22b9c0d3b88ff058f;hp=1f19bf86dd1dd031ac45b536905c092f550ef9f0;hpb=87e80c4b5fec421ecd566498b7dd4672f76fdca2;p=git.git diff --git a/Documentation/repository-layout.txt b/Documentation/repository-layout.txt index 1f19bf86..b52dfdc3 100644 --- a/Documentation/repository-layout.txt +++ b/Documentation/repository-layout.txt @@ -89,6 +89,8 @@ hooks:: commands. A handful of sample hooks are installed when `git init-db` is run, but all of them are disabled by default. To enable, they need to be made executable. + Read link:hooks.html[hooks] for more details about + each hook. index:: The current index file for the repository. It is @@ -126,3 +128,14 @@ remotes:: Stores shorthands to be used to give URL and default refnames to interact with remote repository to `git fetch`, `git pull` and `git push` commands. + +logs:: + Records of changes made to refs are stored in this + directory. See the documentation on git-update-ref + for more information. + +logs/refs/heads/`name`:: + Records all changes made to the branch tip named `name`. + +logs/refs/tags/`name`:: + Records all changes made to the tag named `name`.