Update doc/install/structure.md

This commit is contained in:
Riyad Preukschas 2013-01-17 13:19:40 +01:00
parent b08bb20979
commit bddead9eff
1 changed files with 28 additions and 11 deletions

View File

@ -1,24 +1,41 @@
## Description of GitLab structure # GitLab directory structure
This is the directory structure you will end up with following the instructions in the Installation Guide.
### Directory structure
|-- home |-- home
| |-- gitlab | |-- gitlab
| |-- .ssh
| |-- gitlab | |-- gitlab
| |-- gitlab-satellites | |-- gitlab-satellites
| |-- git | |-- git
| |-- repositories
| |-- .gitolite | |-- .gitolite
| |-- .ssh
| |-- bin
| |-- gitolite
| |-- repositories
gitlab **/home/gitlab/.ssh**
Holds all the code of gitlab application. Contains the Gitolite admin key GitLab uses to configure Gitolite.
gitlab-satellites **/home/gitlab/gitlab**
Contains a copy of all repositories with working tree. This is where GitLab lives.
Used to automatically merge requests, edit files etc...
repositories **/home/gitlab/gitlab-satellites**
Keeps all you repositories in bare format here Contains a copy of all repositories with a working tree.
It's used for merge requests, editing files, etc.
**/home/git/.ssh**
Contains the SSH access configuration managed by Gitolite.
**/home/git/bin**
Contains Gitolite executables.
**/home/git/gitolite**
This is where Gitolite lives.
**/home/git/repositories**
Holds all your repositories in bare format.
This is the place Git uses when you pull/push to your projects.
You can change them in your `config/gitlab.yml` file.