summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/GettingStarted.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/GettingStarted.rst b/docs/GettingStarted.rst
index 7ea5473c28..048d4a0248 100644
--- a/docs/GettingStarted.rst
+++ b/docs/GettingStarted.rst
@@ -655,10 +655,10 @@ consider placing the following git script in your path under the name
fi
git fetch
- old_branch=$(git rev-parse --abbrev-ref HEAD)
+ OLD_BRANCH=$(git rev-parse --abbrev-ref HEAD)
git checkout master 2> /dev/null
git svn rebase -l
- git checkout $old_breanch 2> /dev/null
+ git checkout $OLD_BRANCH 2> /dev/null
if [ ! -z $STASH ]; then
git stash pop >/dev/null