aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2015-01-23 08:06:13 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-01-23 08:06:13 -0800
commit528eadceab2c03de2a8297aac87203d01dfcf893 (patch)
tree61ea5284bad137f6b2c60615c20a3aa42b3fc4a0 /site
parent68b60c3d5a0f45144ecaa21006e051dc75a9ec94 (diff)
Fix 'Revert' instructions.
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
Diffstat (limited to 'site')
-rw-r--r--site/dev/contrib/revert.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/dev/contrib/revert.md b/site/dev/contrib/revert.md
index 09665a7742..9067e50cd8 100644
--- a/site/dev/contrib/revert.md
+++ b/site/dev/contrib/revert.md
@@ -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>