diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-28 10:14:38 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-28 10:14:38 -0700 |
commit | a57c8bac0021cec21027e25bd797f85b0abf9c81 (patch) | |
tree | 386045d9d30b5941b24e47dea70ab7e5548af8e2 /Documentation | |
parent | Make cvsexportcommit create parent directories as needed. (diff) | |
download | tgif-a57c8bac0021cec21027e25bd797f85b0abf9c81.tar.xz |
Let git-clone to pass --template=dir option to git-init-db.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-clone.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Documentation/git-clone.txt b/Documentation/git-clone.txt index b333f51045..94d9393372 100644 --- a/Documentation/git-clone.txt +++ b/Documentation/git-clone.txt @@ -9,8 +9,8 @@ git-clone - Clones a repository SYNOPSIS -------- [verse] -'git-clone' [-l [-s]] [-q] [-n] [--bare] [-o <name>] [-u <upload-pack>] - [--reference <repository>] +'git-clone' [--template=<template_directory>] [-l [-s]] [-q] [-n] [--bare] + [-o <name>] [-u <upload-pack>] [--reference <repository>] <repository> [<directory>] DESCRIPTION @@ -89,6 +89,11 @@ OPTIONS the command to specify non-default path for the command run on the other end. +--template=<template_directory>:: + Specify the directory from which templates will be used; + if unset the templates are taken from the installation + defined default, typically `/usr/share/git-core/templates`. + <repository>:: The (possibly remote) repository to clone from. It can be any URL git-fetch supports. |