Revision 5eb59a4d4413f4d5a7ea8e59cb962d4e3c93853e authored by Dirk Roorda on 30 April 2020, 14:29:43 UTC, committed by Dirk Roorda on 30 April 2020, 14:29:43 UTC
1 parent c6e4a54
Raw File
manageapps.sh
#!/bin/sh

# Create a nnew branch, commit all changes to that branch
# and push the branch to GitHub.
# Do this for all TF-apps.

# branch v8dev

annotationdir=~/github/annotation

if [[ "$1" == "" ]]; then
    echo "Provide a branch and a commit message"
    exit
else
    branch="$1"
    shift
fi
if [[ "$1" == "" ]]; then
    echo "Provide a commit message"
    exit
else
    msg="$1"
    shift
fi
cd $annotationdir
echo "All apps: commit changes to branch '$branch' and push to GitHub"
for app in `ls -d app-*`
do
    echo "o-o-o [$app] o-o-o"
    cd $annotationdir/$app
    # git checkout -b "$branch"
    git add --all .
    git commit -m "$msg"
    git push origin "$branch" 
done
echo "done"

back to top