febc8c811dd27e5e45789dab4ff67d373f00f6d3
   1git-init-db(1)
   2==============
   3v0.1, May 2005
   4
   5NAME
   6----
   7git-init-db - Creates an empty git object database
   8
   9
  10SYNOPSIS
  11--------
  12'git-init-db'
  13
  14DESCRIPTION
  15-----------
  16This simply creates an empty git object database - basically a `.git`
  17directory and `.git/object/??/` directories.
  18
  19If the object storage directory is specified via the 'GIT_OBJECT_DIRECTORY'
  20environment variable then the sha1 directories are created underneath -
  21otherwise the default `.git/objects` directory is used.
  22
  23"git-init-db" won't hurt an existing repository.
  24
  25
  26Author
  27------
  28Written by Linus Torvalds <torvalds@osdl.org>
  29
  30Documentation
  31--------------
  32Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
  33
  34GIT
  35---
  36Part of the link:git.html[git] suite
  37