Fix 'Revert' instructions.
authortfarina <tfarina@chromium.org>
Fri, 23 Jan 2015 16:06:13 +0000 (08:06 -0800)
committerCommit bot <commit-bot@chromium.org>
Fri, 23 Jan 2015 16:06:13 +0000 (08:06 -0800)
In the not so new pure Git world, 'svn fetch' and 'svn rebase' are not
needed anymore.

BUG=None
R=borenet@google.com

Review URL: https://codereview.chromium.org/872433004

site/dev/contrib/revert.md

index 09665a7742f77758ff0dbd9eac65cb0a8d8c3d35..9067e50cd8fdfd7e578ba25c2bd0d26bf3281c6a 100644 (file)
@@ -9,8 +9,8 @@ Using one-click revert
 Using Git
 ---------
     * git checkout master
-    * git svn fetch && git svn rebase && gclient sync
-    * git checkout -t -b <branch_name>
+    * git pull --rebase && gclient sync
+    * git checkout -b <branch_name> origin/master
     * git log
     * <Find the SHA1 of the commit you want to revert>
     * git revert <SHA1>