commands.sh

dolt

all

An SQL database that you can fork, clone, branch, merge, push, and pull just like a Git repository. Some subcommands such as `commit` have their own usage documentation.

More info →

Options (1)

-m, --messageboolean

Record staged changes to the repository

Example: dolt commit {{[-m|--message]}} "{{commit_message}}"

Examples (7)

Initialize a new Dolt data repository

Show the current working tree status

Add a remote Dolt repository

dolt remote add repository_name url

Stage changes to tables

dolt add table_name

Record staged changes to the repository

dolt commit [-m|--message] "commit_message"

Push local changes to a remote

dolt push

Pull changes from a remote

dolt pull
made by @shridhargupta | data from tldr-pages