diff options
author | Nguyen Thai Ngoc Duy <pclouds@gmail.com> | 2011-05-24 23:40:32 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-25 09:30:26 -0700 |
commit | 09ffc706e48f93ed622a9a61704b2f767666b30d (patch) | |
tree | 125aa14cd9380e9af12a2c6d69c09426d7ebaa61 /builtin/init-db.c | |
parent | 9963e025e88f134cf07ef348d80a5821c69a7eb0 (diff) | |
download | git-09ffc706e48f93ed622a9a61704b2f767666b30d.tar.gz |
init/clone: remove short option -L and document --separate-git-dir
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/init-db.c')
-rw-r--r-- | builtin/init-db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/init-db.c b/builtin/init-db.c index b7370d9bb8..7d8ff096e9 100644 --- a/builtin/init-db.c +++ b/builtin/init-db.c @@ -490,7 +490,7 @@ int cmd_init_db(int argc, const char **argv, const char *prefix) "specify that the git repository is to be shared amongst several users", PARSE_OPT_OPTARG | PARSE_OPT_NONEG, shared_callback, 0}, OPT_BIT('q', "quiet", &flags, "be quiet", INIT_DB_QUIET), - OPT_STRING('L', "separate-git-dir", &real_git_dir, "gitdir", + OPT_STRING(0, "separate-git-dir", &real_git_dir, "gitdir", "separate git dir from working tree"), OPT_END() }; |