2013-04-26 02:58:45 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
echo "Invalid arguments!"
|
2014-10-08 11:32:47 +02:00
|
|
|
echo "$0 <rNNNNNN | git-hash>"
|
2013-04-26 02:58:45 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$(git status -uno -s --porcelain)" ]; then
|
|
|
|
echo "You have unstashed changes. Please stash and then revert."
|
|
|
|
git status -uno
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
COMMIT=$1
|
2014-10-08 11:32:47 +02:00
|
|
|
OTHER=$(git svn find-rev "$COMMIT")
|
2013-04-26 05:27:39 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-10-08 11:32:47 +02:00
|
|
|
echo "Error! Could not find an svn/git revision for commit $COMMIT!"
|
2013-04-26 02:58:45 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2014-10-08 11:32:47 +02:00
|
|
|
if [ -n "$(echo $COMMIT | grep '^r[0-9]\+')" ]; then
|
|
|
|
SVN=`echo $COMMIT | sed -e 's/^r//'`
|
|
|
|
GIT=$OTHER
|
|
|
|
else
|
|
|
|
SVN=$OTHER
|
|
|
|
GIT=$COMMIT
|
|
|
|
fi
|
|
|
|
|
2013-04-26 02:58:45 +02:00
|
|
|
# Grab the one line message for our revert commit message.
|
2014-10-08 11:32:47 +02:00
|
|
|
ONE_LINE_MSG=$(git log --oneline $GIT -1 | cut -f2- -d " ")
|
2013-04-26 02:58:45 +02:00
|
|
|
|
|
|
|
# Revert the commit.
|
2014-10-08 11:32:47 +02:00
|
|
|
git revert --no-commit $GIT 2>/dev/null
|
2013-04-26 02:58:45 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-10-08 11:32:47 +02:00
|
|
|
echo "Error! Failed to revert commit r$SVN. Resetting to head."
|
2013-04-26 02:58:45 +02:00
|
|
|
git reset --hard HEAD
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create a template in our .git directory.
|
|
|
|
TEMPLATE="`git rev-parse --git-dir`/git-svn-revert-template"
|
|
|
|
cat > $TEMPLATE <<EOF
|
|
|
|
Revert "$ONE_LINE_MSG"
|
|
|
|
|
2014-10-08 11:32:47 +02:00
|
|
|
This reverts commit r$SVN.
|
2013-04-26 02:58:45 +02:00
|
|
|
EOF
|
|
|
|
|
|
|
|
# Begin the commit but give our user an opportunity to edit it.
|
|
|
|
git commit --file="$TEMPLATE" --edit
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-10-08 11:32:47 +02:00
|
|
|
echo "Error! Failed to commit reverting commit for commit r$SVN. Reverting to head."
|
2013-04-26 02:58:45 +02:00
|
|
|
git reset --hard HEAD
|
|
|
|
rm -rf $TEMPLATE
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf $TEMPLATE
|
|
|
|
|