Forrest logo
back to the dolt tool

dolt-branch:tldr:b6817

dolt-branch: Create a new branch based on the current branch.
$ dolt branch ${branch_name}
try on your machine

The "dolt branch" command is used in a version control system called Dolt, which is a SQL database with Git-like version control capabilities. The "dolt branch ${branch_name}" command is used to create a new branch in the Dolt repository. In this command, "${branch_name}" is a placeholder for the name you want to give to the new branch. You need to replace "${branch_name}" with the actual name you want to use. For example, if you want to create a new branch called "feature-branch," you would execute the following command: dolt branch feature-branch After executing this command, Dolt will create a new branch with the specified name and make it the current branch. This means that any subsequent commits you make will be recorded on this branch.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the dolt tool