Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
dolt-config Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`