This repo gets frequent updates. To make sure your fork stays in sync:
- Go to your fork on GitHub.
- Click the Sync fork button (top right).
- Click Update branch.
If you cloned your fork locally:
git remote add upstream https://github.com/YOUR-USERNAME/YOUR-REPO.git
git fetch upstream
git checkout main
git merge upstream/main # or git rebase upstream/main
git push origin main