dolt branch
Manage Dolt branches.
- List local branches (current branch is highlighted by `*`):
dolt branch
- List all local and remote branches:
dolt branch --all
- Create a new branch based on the current branch:
dolt branch {branch_name}
- Create a new branch with the specified commit as the latest:
dolt branch {branch_name} {commit}
dolt branch --move {branch_name1} {branch_name2}
dolt branch --copy {branch_name1} {branch_name2}
dolt branch --delete {branch_name}
- Display the name of the current branch:
dolt branch --show-current
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).