dolt-branch:tldr:b6817
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.