|
||||
File indexing completed on 2025-01-17 09:03:00
0001 #!/bin/bash 0002 # runs 'git status' in each repository 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 echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> $(basename `pwd`)" 0009 git status 0010 cd $wd 0011 echo "" 0012 echo "" 0013 fi 0014 done
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |