summaryrefslogtreecommitdiff
path: root/t/t3415-rebase-autosquash.sh
diff options
context:
space:
mode:
authorYann Dirson <ydirson@altern.org>2010-10-01 21:19:19 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-10-06 20:46:02 (GMT)
commit7c6eafa35af805578990e76b691ff7f1a25a3c57 (patch)
tree7c954c797ad47889ef1ac71a7de40b07abfb5521 /t/t3415-rebase-autosquash.sh
parent95b7a41a80e56e3df904a2080d0665565c231272 (diff)
downloadgit-7c6eafa35af805578990e76b691ff7f1a25a3c57.zip
git-7c6eafa35af805578990e76b691ff7f1a25a3c57.tar.gz
git-7c6eafa35af805578990e76b691ff7f1a25a3c57.tar.bz2
t/t3415: use && where applicable.
Signed-off-by: Yann Dirson <ydirson@altern.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3415-rebase-autosquash.sh')
-rwxr-xr-xt/t3415-rebase-autosquash.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t3415-rebase-autosquash.sh b/t/t3415-rebase-autosquash.sh
index 37cb89a..fd2184c 100755
--- a/t/t3415-rebase-autosquash.sh
+++ b/t/t3415-rebase-autosquash.sh
@@ -26,7 +26,7 @@ test_auto_fixup() {
echo 1 >file1 &&
git add -u &&
test_tick &&
- git commit -m "fixup! first"
+ git commit -m "fixup! first" &&
git tag $1 &&
test_tick &&
@@ -55,7 +55,7 @@ test_auto_squash() {
echo 1 >file1 &&
git add -u &&
test_tick &&
- git commit -m "squash! first"
+ git commit -m "squash! first" &&
git tag $1 &&
test_tick &&
@@ -84,7 +84,7 @@ test_expect_success 'misspelled auto squash' '
echo 1 >file1 &&
git add -u &&
test_tick &&
- git commit -m "squash! forst"
+ git commit -m "squash! forst" &&
git tag final-missquash &&
test_tick &&
git rebase --autosquash -i HEAD^^^ &&