diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-06-01 22:54:16 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-01 22:54:16 -0700 |
commit | 68100531547f9abd00362e31282155efdc040a4c (patch) | |
tree | 1d10153dcea0a279386adaf5667bbc0d4a61a34f /Documentation | |
parent | 32d8050a86f8de0253430b12711354e66a317f29 (diff) | |
parent | 74d3b23fe3771c769ccd5c97f6a46682b4061577 (diff) | |
download | git-68100531547f9abd00362e31282155efdc040a4c.tar.gz git-68100531547f9abd00362e31282155efdc040a4c.tar.xz |
Merge branch 'lr/init-bare'
* lr/init-bare:
git-init: accept --bare option
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-init.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/git-init.txt b/Documentation/git-init.txt index b17ae8485..b48c31289 100644 --- a/Documentation/git-init.txt +++ b/Documentation/git-init.txt @@ -8,7 +8,7 @@ git-init - Create an empty git repository or reinitialize an existing one SYNOPSIS -------- -'git-init' [-q | --quiet] [--template=<template_directory>] [--shared[=<permissions>]] +'git-init' [-q | --quiet] [--bare] [--template=<template_directory>] [--shared[=<permissions>]] OPTIONS @@ -20,6 +20,11 @@ OPTIONS Only print error and warning messages, all other output will be suppressed. +--bare:: + +Create a bare repository. If GIT_DIR environment is not set, it is set to the +current working directory. + --template=<template_directory>:: Provide the directory from which templates will be used. The default template |