view utils/git-svn/git-svnup @ 109:6916f1d3a436

meu
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Mon, 01 Feb 2016 03:02:03 +0900
parents 95c75e76d11b
children
line wrap: on
line source

#!/bin/bash

if [ -n "`git status -uno -s --porcelain`" ]; then
    echo "You have unstashed changes. Can not update repository..."
    git status -uno
    exit 1
fi

git fetch
OLD_BRANCH=$(git rev-parse --abbrev-ref HEAD)
git checkout master 2> /dev/null
git svn rebase -l
git checkout $OLD_BRANCH 2> /dev/null

exit 0