mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-18 14:49:57 +00:00
26 lines
609 B
Plaintext
Executable File
26 lines
609 B
Plaintext
Executable File
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# yadm config
|
|
|
|
> Pass options to yadm's config file. Change the `.config` of the repository managed by yadm.
|
|
> More information: <https://github.com/TheLocehiliosan/yadm/blob/master/yadm.md#configuration>.
|
|
|
|
- Set or update a yadm's Git configuration:
|
|
|
|
`yadm config {{key.inner-key}} {{value}}`
|
|
|
|
- Get a value from yadm's Git configuration:
|
|
|
|
`yadm config --get {{key}}`
|
|
|
|
- Unset a value in yadm's Git configuration:
|
|
|
|
`yadm config --unset {{key}}`
|
|
|
|
- List all values in yadm's Git configuration:
|
|
|
|
`yadm config --list`
|