diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2012-01-16 16:46:07 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-01-16 16:26:24 -0800 |
commit | bafe763197cb6535e5b4956ffeaa4e26ebb10651 (patch) | |
tree | 9d212f71dd941dd9a6b72fd379c25cfa677c46cb /t/t5601-clone.sh | |
parent | 3e6e0edde20f536b28cf1dac04c7376000bfc701 (diff) | |
download | git-bafe763197cb6535e5b4956ffeaa4e26ebb10651.tar.gz |
t5601: add missing && cascade
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/t5601-clone.sh')
-rwxr-xr-x | t/t5601-clone.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh index 87ee01662c..49821eb467 100755 --- a/t/t5601-clone.sh +++ b/t/t5601-clone.sh @@ -9,9 +9,9 @@ test_expect_success setup ' rm -fr .git && test_create_repo src && ( - cd src - >file - git add file + cd src && + >file && + git add file && git commit -m initial ) |