summaryrefslogtreecommitdiff
path: root/.gitlab-ci/show-git-commits.sh
blob: 889d2df6bb1cf104d6e089b652c5db80917ddf69 (plain)
1
2
3
4
5
6
#!/bin/sh

for dir in ./ subprojects/*/; do
    echo "git commit in $dir:"
    ( cd "$dir" && git describe --always --broken --dirty --long --tags ) || true
done