Skip to content

Commit 5e5e147

Browse files
authored
Update release-guide.md (#33631)
1 parent 03bc54b commit 5e5e147

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

contributor-docs/release-guide.md

+11
Original file line numberDiff line numberDiff line change
@@ -1437,3 +1437,14 @@ Hi everyone,
14371437
Please review and vote on the release candidate #1 for the version 2.XX.1. Given the time sensitive nature of patch releases, I will finalize the release as soon as I have 3 binding approvals AND at least 24 hours have passed.
14381438
14391439
```
1440+
1441+
## Tips
1442+
1443+
### Revert a commit on a release branch
1444+
1445+
The recomended approach is to use `git revert`, for example,
1446+
```bash
1447+
git checkout origin/release-2.62.0
1448+
git revert 41215a3116b5e866d1e5b017611a479eeee72df1
1449+
git push origin HEAD:release-2.62.0
1450+
```

0 commit comments

Comments
 (0)