1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-24 00:02:09 +02:00
tldr/pages/common/dolt-config.md
Juri Dispan 0f0c9da99e
*: replace dead more information links (#11542)
* *: replace dead more informtion links

* dolt

* Apply suggestions from code review

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-19 22:07:13 +01:00

28 lines
796 B
Markdown

# dolt config
> Read and write local (per repository) and global (per user) Dolt configuration variables.
> More information: <https://docs.dolthub.com/cli-reference/cli#dolt-config>.
- List all local and global configuration options and their values:
`dolt config --list`
- Display the value of a local or global configuration variable:
`dolt config --get {{name}}`
- Modify the value of a local configuration variable, creating it if it doesn't exist:
`dolt config --add {{name}} {{value}}`
- Modify the value of a global configuration variable, creating it if it doesn't exist:
`dolt config --global --add {{name}} {{value}}`
- Delete a local configuration variable:
`dolt config --unset {{name}}`
- Delete a global configuration variable:
`dolt config --global --unset {{name}}`