Skip to content

Commit

Permalink
Update release-guide.md (#33631)
Browse files Browse the repository at this point in the history
  • Loading branch information
liferoad authored Jan 20, 2025
1 parent 03bc54b commit 5e5e147
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions contributor-docs/release-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1437,3 +1437,14 @@ Hi everyone,
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.
```
## Tips
### Revert a commit on a release branch
The recomended approach is to use `git revert`, for example,
```bash
git checkout origin/release-2.62.0
git revert 41215a3116b5e866d1e5b017611a479eeee72df1
git push origin HEAD:release-2.62.0
```

0 comments on commit 5e5e147

Please sign in to comment.