#!/bin/sh # git clone --mirror -v --progress https://bitbucket.org/tmidas/midas # git clone --mirror -v --progress https://bitbucket.org/tmidas/mxml # git clone --mirror -v --progress https://bitbucket.org/tmidas/mjson # git clone --mirror -v --progress https://bitbucket.org/tmidas/mvodb # git clone --mirror -v --progress https://bitbucket.org/tmidas/midasio # git clone --mirror -v --progress https://bitbucket.org/tmidas/manalyzer # git clone --mirror -v --progress https://bitbucket.org/tmidas/mscb # git clone --mirror -v --progress https://bitbucket.org/tmidas/mscb-Triumf # git clone --mirror -v --progress https://bitbucket.org/tmidas/roody # git clone --mirror -v --progress https://bitbucket.org/tmidas/rootana # git clone --mirror -v --progress https://bitbucket.org/ritt/elog echo echo Updating MIDAS echo cd ~daqweb/public_html/git/midas.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt echo echo Updating MXML echo cd ~daqweb/public_html/git/mxml.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt echo echo Updating MJSON echo cd ~daqweb/public_html/git/mjson.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt echo echo Updating MVODB echo cd ~daqweb/public_html/git/mvodb.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt echo echo Updating midasio echo cd ~daqweb/public_html/git/midasio.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt echo echo Updating manalyzer echo cd ~daqweb/public_html/git/manalyzer.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt echo echo Updating MSCB echo cd ~daqweb/public_html/git/mscb.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt echo echo Updating MSCB-Triumf echo cd ~daqweb/public_html/git/mscb-Triumf.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt echo echo Updating rootana echo cd ~daqweb/public_html/git/rootana.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt echo echo Updating roody echo cd ~daqweb/public_html/git/roody.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt echo echo Updating ELOG echo cd ~daqweb/public_html/git/elog.git git remote show origin git remote prune origin git fetch --all -v --progress git update-server-info git tag -l > tags.txt git branch -a > branches.txt # end