#!/bin/sh
if [ -d .git ]
then
git fetch upstream
git checkout master
git merge --signoff upstream/master
git push --tags
fi
