Forrest logo
back to the dolt tool

dolt:tldr:7840a

dolt: List available subcommands.
$ dolt help
try on your machine

The command "dolt help" is used to display the help information for the Dolt command-line tool. Dolt is a version-controlled SQL database that primarily operates in the command-line interface. When you execute the "dolt help" command, it will provide you with a list of available Dolt commands along with a brief description of each command's purpose. This information can be helpful when you need to understand how to use a specific command or if you are looking for a particular functionality within Dolt. For example, running "dolt help" might display something like: ``` Available commands: init Create an empty Dolt repository or reinitialize an existing one add Add table(s) to the list of tracked tables blame Show what revision and author last modified each line of a file commit Record changes to the repository diff Show the changes between commits, commit and working tree, etc log Show commit logs merge Incorporate changes from other branches or other Dolt repositories pull Fetch from and merge with another repository or a local branch push Update remote refs from your local refs reset Reset current HEAD to the specified state status Show the working tree status

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