Warning, file /drich-dev/check_branches.sh was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003 wd=$(pwd)
0004 echo ""
0005 for repo in . epic EDM4eic irt EICrecon juggler reconstruction_benchmarks; do
0006 if [ -d "$repo" ]; then
0007 cd $repo
0008 printf "%30s: %s (%s)\n" $(basename `pwd`) $(git branch | awk '/^\*/{print $2}') $(git rev-parse --short HEAD)
0009 cd $wd
0010 else
0011 printf "%30s: %s\n" $repo "NOT INSTALLED"
0012 fi
0013 done
0014 echo ""