summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Nguyễn Thái Ngọc Duy <pclouds@gmail.com>2012-01-16 16:46:07 +0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2012-01-16 16:26:24 -0800
commitbafe763197cb6535e5b4956ffeaa4e26ebb10651 (patch)
tree9d212f71dd941dd9a6b72fd379c25cfa677c46cb /t
parentclone: add --single-branch to fetch only one branch (diff)
downloadtgif-bafe763197cb6535e5b4956ffeaa4e26ebb10651.tar.xz
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')
-rwxr-xr-xt/t5601-clone.sh6
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
)