GIT 0.99.9m aka 1.0rc5
[git.git] / Documentation / git-init-db.txt
1 git-init-db(1)
2 ==============
3
4 NAME
5 ----
6 git-init-db - Creates an empty git repository
7
8
9 SYNOPSIS
10 --------
11 'git-init-db' [--template=<template_directory>]
12
13
14 OPTIONS
15 -------
16 --template=<template_directory>::
17         Provide the directory in from which templates will be used.
18
19
20 DESCRIPTION
21 -----------
22 This simply creates an empty git repository - basically a `.git` directory
23 and `.git/object/??/`, `.git/refs/heads` and `.git/refs/tags` directories,
24 and links `.git/HEAD` symbolically to `.git/refs/heads/master`.
25
26 If the `$GIT_DIR` environment variable is set then it specifies a path
27 to use instead of `./.git` for the base of the repository.
28
29 If the object storage directory is specified via the `$GIT_OBJECT_DIRECTORY`
30 environment variable then the sha1 directories are created underneath -
31 otherwise the default `$GIT_DIR/objects` directory is used.
32
33 `git-init-db` won't hurt an existing repository.
34
35
36 EXAMPLES
37 --------
38
39 Start a new git repository for an existing code base::
40 +
41 ----------------
42 $ cd /path/to/my/codebase
43 $ git-init-db
44 ----------------
45
46
47
48 Author
49 ------
50 Written by Linus Torvalds <torvalds@osdl.org>
51
52 Documentation
53 --------------
54 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
55
56 GIT
57 ---
58 Part of the gitlink:git[7] suite
59