For shell scripts, the usual convention is for there to be no space
after redirection operators, (e.g. `>file`, not `> file`). Remove these
spaces wherever they appear.
Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
test_expect_success 'stash save --include-untracked some dirty working directory' '
echo 1 > file &&
echo 1 >file &&
git add file &&
test_tick &&
git commit -m initial &&
echo 2 > file &&
echo 2 >file &&
git add file &&
echo 3 > file &&
echo 3 >file &&
test_tick &&
echo 1 > file2 &&
echo 1 > HEAD &&
echo 1 >file2 &&
echo 1 >HEAD &&
mkdir untracked &&
echo untracked >untracked/untracked &&
git stash --include-untracked &&
@ -25,7 +25,7 @@ test_expect_success 'stash save --include-untracked some dirty working directory
@@ -25,7 +25,7 @@ test_expect_success 'stash save --include-untracked some dirty working directory
git diff-index --cached --quiet HEAD
'
cat > expect <<EOF
cat >expect <<EOF
?? actual
?? expect
EOF
@ -37,7 +37,7 @@ test_expect_success 'stash save --include-untracked cleaned the untracked files'
@@ -37,7 +37,7 @@ test_expect_success 'stash save --include-untracked cleaned the untracked files'
@ -105,14 +105,14 @@ test_expect_success 'stash pop after save --include-untracked leaves files untra
@@ -105,14 +105,14 @@ test_expect_success 'stash pop after save --include-untracked leaves files untra