LinuxCommandLibrary

dolt-config

Read and write local (per repository) and global (per user) Dolt configuration variables.

TLDR

List all local and global configuration options and their values

$ dolt config --list
copy


Display the value of a local or global configuration variable
$ dolt config --get [name]
copy


Modify the value of a local configuration variable, creating it if it doesn't exist
$ dolt config --add [name] [value]
copy


Modify the value of a global configuration variable, creating it if it doesn't exist
$ dolt config --global --add [name] [value]
copy


Delete a local configuration variable
$ dolt config --unset [name]
copy


Delete a global configuration variable
$ dolt config --global --unset [name]
copy

Copied to clipboard