swh:1:snp:a422b851e16cc4f1262b8bf03a4a48e024193f52
Raw File
Tip revision: 4486937ea88c9493ce1fb3ea34bfd3dd83befcd6 authored by Dirk Roorda on 24 December 2021, 16:08:04 UTC
several improvements
Tip revision: 4486937
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-*` tutorials
# for app in `ls -d app-*`
do
    echo "o-o-o [$app] o-o-o"
    cd $annotationdir/$app
    git add --all .
    git commit -m "$msg"
    git push origin master
    # git checkout master
    # git merge "$branch"
    # git checkout -b "$branch"
    # git add --all .
    # git commit -m "$msg"
    # git push origin "$branch" 
done
echo "done"

back to top