mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-22 07:23:55 +02:00

* pages/*: add standard translation and links Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * fix1: false positives; standardize Bengali, Hindi, Nepali periods * fix: periods in recently added Bengali pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * fix: false positives in modified files Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: update to native period in Bengali l10n Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
37 lines
1.2 KiB
Markdown
37 lines
1.2 KiB
Markdown
# git config
|
|
|
|
> Verwalten von benutzerdefinierten Optionen für Git Repositories.
|
|
> Diese Optionen können lokal (für das aktiven Repository) or global (für den aktiven Benutzer) sein.
|
|
> Weitere Informationen: <https://git-scm.com/docs/git-config>.
|
|
|
|
- Liste nur lokale Konfigurationseinträge (gespeichert unter `.git/config` im aktiven Repository) auf:
|
|
|
|
`git config --list --local`
|
|
|
|
- Liste nur globale Konfigurationseinträge (gespeichert unter `~/.gitconfig`) auf:
|
|
|
|
`git config --list --global`
|
|
|
|
- Liste nur System-Konfigurationseinträge (gespeichert unter `/etc/gitconfig`) und deren Speicherort auf:
|
|
|
|
`git config --list --system --show-origin`
|
|
|
|
- Gib den Wert eines bestimmten Konfigurationseintrags aus:
|
|
|
|
`git config alias.unstage`
|
|
|
|
- Setze den globalen Wert eines bestimmten Konfigurationseintrags:
|
|
|
|
`git config --global alias.unstage "reset HEAD --"`
|
|
|
|
- Setze den globalen Wert eines bestimmten Konfigurationseintrags auf seinen Standardwert zurück:
|
|
|
|
`git config --global --unset alias.unstage`
|
|
|
|
- Bearbeite die Git-Konfiguration für das aktuelle Repository mit dem Standard-Editor:
|
|
|
|
`git config --edit`
|
|
|
|
- Bearbeite die globale Git-Konfiguration mit dem Standard-Editor:
|
|
|
|
`git config --global --edit`
|