1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

git-config: update page (#15557)

* Update git-config.md

* Update git-config.md
This commit is contained in:
Managor 2025-01-21 00:16:16 +02:00 committed by GitHub
parent c11d66458a
commit b5d9b3700a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,25 +8,25 @@
`git config --global {{user.name|user.email}} "{{Your Name|email@example.com}}"` `git config --global {{user.name|user.email}} "{{Your Name|email@example.com}}"`
- List local or global configuration entries: - List local, global or system configuration entries and show their file location:
`git config --list --{{local|global}}` `git config --list --{{local|global|system}} --show-origin`
- List only system configuration entries (stored in `/etc/gitconfig`), and show their file location: - Set the global value of a given configuration entry (in this case an alias):
`git config --list --system --show-origin` `git config --global {{alias.unstage}} "reset HEAD --"`
- Get the value of a given configuration entry: - Get the value of a given configuration entry:
`git config alias.unstage` `git config {{alias.unstage}}`
- Set the global value of a given configuration entry: - Use an alias:
`git config --global alias.unstage "reset HEAD --"` `git {{unstage}}`
- Revert a global configuration entry to its default value: - Revert a global configuration entry to its default value:
`git config --global --unset alias.unstage` `git config --global --unset {{alias.unstage}}`
- Edit the local Git configuration (`.git/config`) in the default editor: - Edit the local Git configuration (`.git/config`) in the default editor: