Skip to content

After Your PR Is Merged (or Before Your Next Contribution)

Before starting a new contribution, make sure your fork is up to date with the official repository.

Sync with Upstream

Fetch the latest changes, rebase your main branch, and push the updates to your fork:

git switch main
git fetch upstream
git rebase upstream/main
git push origin main

Your fork is now aligned with the official repository. You're ready to create a new branch and start your next contribution. 🚀