From 19c37352626531efe1a8128a168804a4bb5adc86 Mon Sep 17 00:00:00 2001 From: Michael Gottesman Date: Fri, 26 Apr 2013 00:58:45 +0000 Subject: Added the scripts git-svnup/git-svnrevert to utils/git-svn. It makes more sense to have git-svnup here than catting said file in the documentation (where we should rather point users to this directory). I included git-svnrevert as an additional gift to the community. I will update the documentation in a second commit later today. git-svnrevert takes in a git hash for a commit, looks up the svn revision for said commit and then creates the normal git revert commit message with the one liner message, except instead of saying Revert "<<>>" This reverts commit <<>> It says: Revert "<<>>" This reverts commit r<<>> so git hashes will not escape into our svn logs (which just look unseemly). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180587 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/git-svn/git-svnrevert | 53 +++++++++++++++++++++++++++++++++++++++++++++ utils/git-svn/git-svnup | 15 +++++++++++++ 2 files changed, 68 insertions(+) create mode 100755 utils/git-svn/git-svnrevert create mode 100755 utils/git-svn/git-svnup (limited to 'utils') diff --git a/utils/git-svn/git-svnrevert b/utils/git-svn/git-svnrevert new file mode 100755 index 0000000000..de4ff1cd46 --- /dev/null +++ b/utils/git-svn/git-svnrevert @@ -0,0 +1,53 @@ +#!/bin/bash + +if [ $# -ne 1 ]; then + echo "Invalid arguments!" + echo "$0 " + 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 + +SVN_REVISION=$(git log -1 $COMMIT | grep git-svn-id | tr -s "@" " " | cut -f 4 -d " ") + +if [ -z "$SVN_REVISION" ]; then + echo "Error! Given commit is not a git-svn revision!" + exit 1 +fi + +# Grab the one line message for our revert commit message. +ONE_LINE_MSG=$(git log --oneline $COMMIT -1 | cut -f2- -d " ") + +# Revert the commit. +git revert --no-commit $COMMIT 2>/dev/null +if [ $? -ne 0 ]; then + echo "Error! Failed to revert commit $COMMIT. Resetting to head." + 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 < /dev/null +git svn rebase -l +git checkout $OLD_BRANCH 2> /dev/null + +exit 0 -- cgit v1.2.3