main, represents the content used to build your live documentation site. All other branches are independent of your live docs unless you choose to merge them into your deployment branch.
Branches let you create separate instances of your documentation to make changes, get reviews, and try new approaches before publishing. Your team can work on branches to update different parts of your documentation simultaneously without affecting what users see on your live site.
The following diagram shows an example of a branch workflow where you create a feature branch, make changes, and then merge the feature branch into the main branch.
Always work from branches when updating documentation to keep your live site stable and enable review workflows.
Branch naming conventions
Use clear, descriptive names that explain the purpose of a branch. Use:fix-broken-linksadd-webhooks-guidereorganize-getting-startedticket-123-oauth-guide
tempmy-branchupdatesbranch1
Create a branch
- Using web editor
- Using local development
- Click the branch name in the editor toolbar. If you don’t see it, show the branch selector.
- Click Create new branch.
- Enter a descriptive name.
- If you have unsaved changes, choose whether to bring them to the new branch or leave them on your current branch.
- Click Create branch.
Save changes on a branch
- Using web editor
- Using local development
Click the Save in branch button in the top-right of the editor toolbar. This creates a commit and pushes your work to your branch automatically.
Switch branches
- Using web editor
- Using local development
- Click the branch name in the editor toolbar to open the branch dropdown.
- Search for a branch by name or scroll through the list.
- Click the branch you want to switch to.
Merge branches
Once your changes are ready to publish, merge your branch into the deployment branch.- Using the editor
- Using local development
If Mintlify hosts your repository, click Merge and publish to merge your branch and publish your changes.If you connected your own Git repository:
- Click Create pull request in the top-right of the editor toolbar. The editor opens a pull request that targets your deployment branch.
- In your Git provider, mark the pull request ready for review if it is a draft. Complete any required reviews and checks, then merge it.
Delete a branch
Delete branches you no longer need to keep the branch dropdown manageable.- Using web editor
- Using local development
- Click the branch name in the editor toolbar to open the branch dropdown.
- Hover over the branch that you want to delete.
- Click the Delete branch trash icon.
- Click Delete branch to confirm.