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 /t | |
parent | 9963e025e88f134cf07ef348d80a5821c69a7eb0 (diff) | |
download | git-09ffc706e48f93ed622a9a61704b2f767666b30d.tar.gz git-09ffc706e48f93ed622a9a61704b2f767666b30d.tar.xz |
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 't')
-rwxr-xr-x | t/t0001-init.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0001-init.sh b/t/t0001-init.sh index 54520f6fa..37c22516f 100755 --- a/t/t0001-init.sh +++ b/t/t0001-init.sh @@ -409,7 +409,7 @@ test_expect_success SYMLINKS 're-init to move gitdir symlink' ' cd newdir && mv .git here && ln -s here .git && - git init -L ../realgitdir + git init --separate-git-dir ../realgitdir ) && echo "gitdir: `pwd`/realgitdir" >expected && test_cmp expected newdir/.git && |