git: add german tanslation

This commit is contained in:
DoPanik 2020-10-04 01:13:40 +02:00 committed by Starbeamrainbowlabs
parent 557660e181
commit 1a58482406

28
pages.de/common/git.md Normal file
View File

@ -0,0 +1,28 @@
# git
> Verteiltes Versionskontrollsystem.
> Mehr Informationen: <https://git-scm.com/>.
- Gibt die installierte Git Version aus:
`git --version`
- Zeigt die generelle Hilfsseite an:
`git --help`
- Zeigt die Hilfsseite der angegeben Aktion an:
`git help {{aktion}}`
- Führt eine Git-Aktion aus:
`git {{aktion}}`
- Führt eine Git-Aktion auf einem benutzerdefinierten Repository aus:
`git -C {{pfad/zum/repo}} {{aktion}}`
- Führt eine Git-Aktion mit der angegebenen Konfiguration aus:
`git -c '{{config.key}}={{value}}' {{subcommand}}`