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
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>