Forrest logo
back to context overview

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 machine
    explain this command
  • dolt-branch:tldr:5782c dolt-branch: Display the name of the current branch.
    $ dolt branch --show-current
    try on your machine
    explain this command
  • dolt-branch:tldr:8a78f dolt-branch: Delete a branch.
    $ dolt branch --delete ${branch_name}
    try on your machine
    explain this command
  • dolt-branch:tldr:b6817 dolt-branch: Create a new branch based on the current branch.
    $ dolt branch ${branch_name}
    try on your machine
    explain this command
  • dolt-branch:tldr:d82f9 dolt-branch: Rename a branch.
    $ dolt branch --move ${branch_name1} ${branch_name2}
    try on your machine
    explain this command
  • dolt-branch:tldr:e49c7 dolt-branch: List all local and remote branches.
    $ dolt branch --all
    try on your machine
    explain this command
  • dolt-branch:tldr:ebea1 dolt-branch: Duplicate a branch.
    $ dolt branch --copy ${branch_name1} ${branch_name2}
    try on your machine
    explain this command
  • dolt-branch:tldr:fb45d dolt-branch: List local branches (current branch is highlighted by `*`).
    $ dolt branch
    try on your machine
    explain this command
back to context overview