# How to use the editor (/editor/tutorial)

<!-- agent-signals: reading_time_min: 3 · est_tokens: 1195 · updated: 2026-09-23 -->
Related: [Create and edit pages](/editor/pages.md), [Publish changes](/editor/publish.md), [Review changes](/editor/review.md), [Collaborate in the editor](/editor/collaborate.md), [Ask agent](/editor/agent.md), [Editor settings for AI and publishing](/editor/settings.md)

This tutorial walks you through a complete content update using the editor. You'll create a branch, make a change, share a preview for review, and publish your changes.

<Steps>
  <Step title="Create a branch">
    A branch is a temporary copy of your content. It's where you make your changes without affecting your live site. You can merge a branch into your live site or safely discard it if you choose not to make the changes.

    Working on a branch keeps your edits separate from your live site until you're ready to share the content with your users.

    1. In the editor toolbar, click the branch name (usually `main`, with a **Live** badge). If you don't see it, [show the branch selector](/editor/publish#show-the-branch-selector).
       <Frame>
         <img src="/_assets/bf51e2362f1e2e0da4fd2b42ec73ef0dfe28e2dac4c23284d0d724f52eecd6b7" alt="Branch name emphasized in the editor toolbar." className="block dark:hidden" />

         <img src="/_assets/0ba261353886d412e1f0ab56a000d7751e1593e83b19c4328acdb3ba495c5e27" alt="Branch name emphasized in the editor toolbar." className="hidden dark:block" />
       </Frame>
    2. In **Find a branch**, type a title that describes your change, like `Update quickstart`.
    3. Click **New branch**.

    The editor switches to your new branch. Any changes you make are only on the branch, and they commit to the branch automatically as you work. They only appear on your live site if you complete the publishing process.
  </Step>

  <Step title="Make your changes">
    Edit an existing page or create a new one.

    **To edit a page**: Click the page name in the navigation sidebar to open it. Type directly in the editor to add content. Press <kbd>/</kbd> to insert components, images, or other content.

    **To create a page**: Click the <Icon icon="<svg xmlns=&#x22;http://www.w3.org/2000/svg&#x22; viewBox=&#x22;0 0 24 24&#x22; fill=&#x22;none&#x22;><path d=&#x22;M12.001 5.00003V19.002&#x22; stroke=&#x22;currentColor&#x22; stroke-linecap=&#x22;round&#x22; stroke-linejoin=&#x22;round&#x22; stroke-width=&#x22;1.5&#x22;/><path d=&#x22;M19.002 12.002L4.99998 12.002&#x22; stroke=&#x22;currentColor&#x22; stroke-linecap=&#x22;round&#x22; stroke-linejoin=&#x22;round&#x22; stroke-width=&#x22;1.5&#x22;/></svg>" /> plus button next to the navigation group where you want to add the page, then click **New page**. Type a title for the page. The editor names the file after the title.

    <Frame>
      <img src="/_assets/848f57ebc752f3850dc57e934252bc9b77001b05f33f941ae611d460b77b0850" alt="The add page menu opened beside a group in the editor." className="block dark:hidden" />

      <img src="/_assets/aa56585168d2faea354b3e46c96fef0e6974c68f4e17d475d1ddab3162fd867a" alt="The add page menu opened beside a group in the editor." className="hidden dark:block" />
    </Frame>
  </Step>

  <Step title="Publish your branch">
    When you first edit a branch, the editor opens a pull request for it. A pull request is a proposal to merge your changes into the branch that builds your live site. Your changes only go live after the pull request merges.

    When you're ready for review, request it from the publish menu.

    1. Click **Publish** in the toolbar to open the publish menu.
    2. Optionally, click any changed file in the list to view and compare your edits against the published version.
    3. Click **Request review**.

    A [preview deployment](/editor/review#preview-deployments) builds for your pull request: a temporary link where your changes render exactly as they would on your live site. Find the URL in the pull request comment from the Mintlify bot, and share it with your reviewers.
  </Step>

  <Step title="Get your pull request approved">
    Share the pull request with your team. To open it, click **View request** in the publish menu. Reviewers can open the pull request in GitHub, GitLab, or Bitbucket to leave comments, request changes, or approve it.

    If a reviewer requests changes, make the edits in the editor on the same branch. Your updates commit to the existing pull request automatically. You don't need to create a new one.

    When all required reviewers have approved, the pull request is ready to merge.
  </Step>

  <Step title="Merge and publish">
    With the pull request approved, click **Publish** in the toolbar to reopen the publish menu. The menu now shows the pull request status and an option to merge.

    Click **Merge and publish**. If Mintlify hosts your repository and approvals aren't required, the button says **Publish** instead. The editor merges the pull request and switches you back to your deployment branch. Mintlify builds and deploys your changes. Your live site updates in about 30 seconds to a few minutes.
  </Step>
</Steps>
