Source Control Management With Git/Internal structure

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search

Contents

[edit] Naked git structure

The following is an freshly initialized git v1.5.2.5 repository.[1]

.
└── .git/
    ├── HEAD
    ├── branches/
    ├── config
    ├── description
    ├── hooks/
    │   ├── applypatch-ms
    │   ├── commit-msg
    │   ├── post-commit
    │   ├── post-receive
    │   ├── post-update
    │   ├── pre-applypatc
    │   ├── pre-commit
    │   ├── pre-rebase
    │   └── update
    ├── info/
    │   └── exclude
    ├── objects/
    │   ├── info/
    │   └── pack/
    └── refs/
        ├── heads/
        └── tags/

[edit] Files

[edit] HEAD

[edit] config

[edit] description

[edit] Folders

[edit] branches

[edit] hooks

[edit] info

[edit] objects

[edit] refs


[edit] Footnotes

  1. ^  Generated with tree v1.5.1.1 using tree -AnaF.