https://github.com/annotation/text-fabric
Raw File
Tip revision: 06f6b605dcca3c2f750bd11885b446a3e7b175c5 authored by Dirk Roorda on 28 May 2020, 21:06:32 UTC
towards more generic display algorithm
Tip revision: 06f6b60
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