File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ test_expect_success basics '
32
32
test_create_repo xyzzy &&
33
33
cd xyzzy &&
34
34
>file &&
35
- git add file
35
+ git add file &&
36
36
git commit -m "sub initial"
37
37
) &&
38
38
git add xyzzy &&
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ test_description='git add --all'
6
6
7
7
test_expect_success setup '
8
8
(
9
- echo .gitignore
9
+ echo .gitignore &&
10
10
echo will-remove
11
11
) >expect &&
12
12
(
13
- echo actual
14
- echo expect
13
+ echo actual &&
14
+ echo expect &&
15
15
echo ignored
16
16
) >.gitignore &&
17
17
git --literal-pathspecs add --all &&
@@ -25,10 +25,10 @@ test_expect_success setup '
25
25
26
26
test_expect_success ' git add --all' '
27
27
(
28
- echo .gitignore
29
- echo not-ignored
30
- echo "M .gitignore"
31
- echo "A not-ignored"
28
+ echo .gitignore &&
29
+ echo not-ignored &&
30
+ echo "M .gitignore" &&
31
+ echo "A not-ignored" &&
32
32
echo "D will-remove"
33
33
) >expect &&
34
34
>ignored &&
You can’t perform that action at this time.
0 commit comments