diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-09-19 16:56:22 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-09-19 16:56:22 +0200 |
commit | 0b1be182cea3d6a4b5d38510a5d3eecf4b8dcc49 (patch) | |
tree | cd60c81aa42d609ae9bac7158d95ef0d63cf0860 /using-git.texinfo | |
parent | typo (diff) | |
download | using-git-0b1be182cea3d6a4b5d38510a5d3eecf4b8dcc49.tar.gz using-git-0b1be182cea3d6a4b5d38510a5d3eecf4b8dcc49.tar.bz2 using-git-0b1be182cea3d6a4b5d38510a5d3eecf4b8dcc49.tar.xz |
explicitly say that bare repos does not have index or working tree
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'using-git.texinfo')
-rw-r--r-- | using-git.texinfo | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/using-git.texinfo b/using-git.texinfo index 177b13e..67be059 100644 --- a/using-git.texinfo +++ b/using-git.texinfo @@ -184,7 +184,10 @@ collaborators can submit and fetch commits from. This repository is customarly called `origin'. And it is a bare repository, meaning that it only hold the data in the @file{.git} directory -and cannot be used as the working directory. +and cannot be used as the working directory, it +is missing what is in Git called `index' +@footnote{Or `cache', an obsolete term} and +`working tree'. @example mkcd -p /srv/git/MY_REPOSITORY.git |