#!/bin/bash set -e set -o pipefail if [ "$(git-for-each-ref '[r]efs/remotes/main/tested.other')" ]; then this=$(git-log -n1 --pretty=format:%T) if git log --pretty=format:%T HEAD..main/tested.other \ | grep -xF "$this"; then echo 'EQUAL TREE' exit 0 fi fi time nice tests/using-intree tests/run-all