Skip to content

Instantly share code, notes, and snippets.

@Auronmatrix
Created September 26, 2018 08:09
Show Gist options
  • Save Auronmatrix/f330341918c69427372b2655f7ee8190 to your computer and use it in GitHub Desktop.
Save Auronmatrix/f330341918c69427372b2655f7ee8190 to your computer and use it in GitHub Desktop.
Git Tags for Directory
#!/bin/bash
for d in */ ; do
cd $d
if [ -d .git ];
then
TAG=$(git describe --abbrev=0 --tags 2>/dev/null)
if [[ $TAG =~ ^v ]];
then
echo "$d : $TAG"
fi
fi
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment