2022-09-01 02:29:49 +02:00
|
|
|
case "$(git ls-files)" in
|
|
|
|
one ) echo pass one ;;
|
|
|
|
* ) echo bad one ; return 1 ;;
|
|
|
|
esac &&
|
|
|
|
(
|
|
|
|
case "$(git ls-files)" in
|
|
|
|
two ) echo pass two ;;
|
|
|
|
* ) echo bad two ; exit 1 ;;
|
|
|
|
esac
|
|
|
|
) &&
|
|
|
|
case "$(git ls-files)" in
|
|
|
|
dir/two"$LF"one ) echo pass both ;;
|
|
|
|
* ) echo bad ; return 1 ;;
|
|
|
|
esac &&
|
|
|
|
|
2022-09-01 02:29:45 +02:00
|
|
|
for i in 1 2 3 4 ; do
|
|
|
|
git checkout main -b $i || return $?
|
|
|
|
test_commit $i $i $i tag$i || return $?
|
|
|
|
done
|