Flutter Engine
The Flutter Engine
|
title: "How to revert a CL" linkTitle: "How to revert a CL"
Update the local repository
git fetch origin main
Create a local branch with origin/main as its start point.
git checkout -b revert$RANDOM origin/main
Find the SHA1 of the commit you want to revert
git log origin/main
Create a revert commit.
git revert <SHA1>
Upload it to Gerrit.
git cl upload
Land the revert in origin/main.
git cl land
Delete the local revert branch.
git checkout --detach && git branch -D @{-1}