pixi run initAdd upstream if not already added
git remote add upstream https://github.com/munch-group/codelens-widget.gitFetch upstream changes
git fetch upstreamEither rebase your changes on top of upstream (cleaner history)
git rebase upstream/mainOr, merge upstream into your fork (preserves history)
git merge upstream/mainIf you want to see what's changed upstream before applying:
git log HEAD..upstream/mainSee the actual diff
git diff HEAD...upstream/mainThen push your updated fork:
git push origin mainIf you rebased and need to force push
git push origin main --force-with-lease