view utils/git-svn/git-svnup @ 95:afa8332a0e37 LLVM3.8

LLVM 3.8
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Tue, 13 Oct 2015 17:48:58 +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