
dolt-config
List of commands for dolt-config:
-
dolt-config:tldr:59db0 dolt-config: List all local and global configuration options and their values.$ dolt config --listtry on your machineexplain this command
-
dolt-config:tldr:6da0f dolt-config: Delete a global configuration variable.$ dolt config --global --unset ${name}try on your machineexplain this command
-
dolt-config:tldr:9a16c dolt-config: Delete a local configuration variable.$ dolt config --unset ${name}try on your machineexplain this command
-
dolt-config:tldr:a4c3d dolt-config: Modify the value of a local configuration variable, creating it if it doesn't exist.$ dolt config --add ${name} ${value}try on your machineexplain this command
-
dolt-config:tldr:cfb0c dolt-config: Display the value of a local or global configuration variable.$ dolt config --get ${name}try on your machineexplain this command
-
dolt-config:tldr:e7693 dolt-config: Modify the value of a global configuration variable, creating it if it doesn't exist.$ dolt config --global --add ${name} ${value}try on your machineexplain this command