diff --git a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts
index 3513c721d95d2..baa5678f56940 100644
--- a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts
+++ b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts
@@ -2477,11 +2477,12 @@ export const deployment: NavMenuConstant = {
url: undefined,
items: [
{ name: 'Overview', url: '/guides/deployment/branching' },
- { name: 'GitHub integration', url: '/guides/deployment/branching/github-integration' },
+ { name: 'Branching via GitHub', url: '/guides/deployment/branching/github-integration' },
{
- name: 'Branching 2.0 (Alpha)',
- url: '/guides/deployment/branching/branching-2',
+ name: 'Branching via dashboard',
+ url: '/guides/deployment/branching/dashboard',
},
+
{
name: 'Working with branches',
url: '/guides/deployment/branching/working-with-branches',
diff --git a/apps/docs/content/guides/deployment/branching.mdx b/apps/docs/content/guides/deployment/branching.mdx
index dafdb4d0c3714..6749078bc03f0 100644
--- a/apps/docs/content/guides/deployment/branching.mdx
+++ b/apps/docs/content/guides/deployment/branching.mdx
@@ -12,5 +12,5 @@ Supabase branches create separate environments that spin off from your main proj
- **Separate Environments**: Each branch is a separate environment with its own Supabase instance and API credentials.
- **Preview Branches**: You can create multiple Preview Branches for testing.
- **Persistent Branches**: Persistent branches are long-lived branches. They aren't automatically paused or deleted due to non-inactivity or merging.
-- **GitHub integration and Branching 2.0**: You can use branching with the GitHub integration, or use Branching 2.0 to manage your branches without Git (in Feature Preview).
+- **Managing Branches**: You can create, review, and merge branches either automatically via our [GitHub integration](/docs/guides/deployment/branching/github-integration) or directly [through the dashboard](/docs/guides/deployment/branching/dashboard) (currently in beta). All branches show up in the branches page in the dashboard, regardless of how they were created.
- **Data-less**: New branches do not start with any data from your main project. This is meant to better protect your sensitive production data. To start your branches with data, you can use a [seed file](/docs/guides/deployment/branching/github-integration#seeding) if using the GitHub integration.
diff --git a/apps/docs/content/guides/deployment/branching/branching-2.mdx b/apps/docs/content/guides/deployment/branching/dashboard.mdx
similarity index 77%
rename from apps/docs/content/guides/deployment/branching/branching-2.mdx
rename to apps/docs/content/guides/deployment/branching/dashboard.mdx
index 06ff6b67a8c35..2d938165736cd 100644
--- a/apps/docs/content/guides/deployment/branching/branching-2.mdx
+++ b/apps/docs/content/guides/deployment/branching/dashboard.mdx
@@ -1,36 +1,36 @@
---
-title: 'Branching 2.0 (Alpha)'
-subtitle: 'Create and manage branches without using Git'
+title: 'Branching via the dashboard'
+subtitle: 'Create, manage, review, and merge branches directly in the dashboard'
---
-Branching 2.0 allows you to create and manage Supabase branches without connecting to a Git repository. This is useful for quick testing, prototyping, or when you prefer to manage your database changes outside of Git.
+You can create, manage, review, and merge Supabase branches directly via the dashboard. This is useful for quick testing, prototyping, or when you prefer to work in a no-code way. You can also connect a Supabase branch to a GitHub branch at a later time if needed.
- Branching 2.0 introduces a new workflow for managing database branches without having to use
- Git. Create branches, review changes and merge back into production all through the
- dashboard. Read the below limitations and our{' '}
+ Create branches, review changes, and merge back into production all through the dashboard.
+ Read the below limitations and our{' '}
Enabling this preview will: