Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(375)

Side by Side Diff: site/dev/contrib/revert.md

Issue 844433004: Add Contributing to Skia section of docs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix code block on flatten page Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « site/dev/contrib/patch.md ('k') | site/dev/contrib/style.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 How to revert a CL
2 ==================
3
4 Using one-click revert
5 ----------------------
6 * Find the codereview issue for the CL you want to revert.
7 * Click the "revert" button.
8
9 Using Git
10 ---------
11 * git checkout master
12 * git svn fetch && git svn rebase && gclient sync
13 * git checkout -t -b <branch_name>
14 * git log
15 * <Find the SHA1 of the commit you want to revert>
16 * git revert <SHA1>
17 * git cl upload
18 * git cl land
OLDNEW
« no previous file with comments | « site/dev/contrib/patch.md ('k') | site/dev/contrib/style.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698