
dolt-branch
List of commands for dolt-branch:
-
dolt-branch:tldr:27dc8 dolt-branch: Create a new branch with the specified commit as the latest.$ dolt branch ${branch_name} ${commit}try on your machineexplain this command
-
dolt-branch:tldr:5782c dolt-branch: Display the name of the current branch.$ dolt branch --show-currenttry on your machineexplain this command
-
dolt-branch:tldr:8a78f dolt-branch: Delete a branch.$ dolt branch --delete ${branch_name}try on your machineexplain this command
-
dolt-branch:tldr:b6817 dolt-branch: Create a new branch based on the current branch.$ dolt branch ${branch_name}try on your machineexplain this command
-
dolt-branch:tldr:d82f9 dolt-branch: Rename a branch.$ dolt branch --move ${branch_name1} ${branch_name2}try on your machineexplain this command
-
dolt-branch:tldr:e49c7 dolt-branch: List all local and remote branches.$ dolt branch --alltry on your machineexplain this command
-
dolt-branch:tldr:ebea1 dolt-branch: Duplicate a branch.$ dolt branch --copy ${branch_name1} ${branch_name2}try on your machineexplain this command
-
dolt-branch:tldr:fb45d dolt-branch: List local branches (current branch is highlighted by `*`).$ dolt branchtry on your machineexplain this command