Codebase
Updating the Codebase
Keep your project in sync with the latest changes from the golivekit repository.
Use this guide to pull the latest updates from the official golivekit repository.
Repository URL
Your upstream source is [email protected]:golivekit/golivekit.git.
Update flow
Add the golivekit repository as upstream:
git remote add upstream https://github.com/golivekit/golivekit.gitIf you already added upstream during setup, skip this step.
Pull the latest changes from upstream/main:
git pull upstream main --allow-unrelated-histories --rebaseOptional checks
Verify your remotes:
git remote -vYou should see upstream pointing to the golivekit repository.