Documentation
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.git

If you already added upstream during setup, skip this step.

Pull the latest changes from upstream/main:

git pull upstream main --allow-unrelated-histories --rebase

Optional checks

Verify your remotes:

git remote -v

You should see upstream pointing to the golivekit repository.

On this page