swh:1:snp:7ce5f1105410d5ee1ad6abfdc873986c25b579e5
Raw File
Tip revision: f569607ddd533747eab624d64fd6dea9e65b4c54 authored by Dirk Roorda on 26 August 2021, 13:05:01 UTC
fix in rtl of section headings
Tip revision: f569607
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