mirror of https://github.com/CrimsonTome/tldr.git
30 lines
670 B
Markdown
30 lines
670 B
Markdown
# git
|
|
|
|
> Gedistribueerd versiebeheersysteem.
|
|
> Sommige subcommando's zoals `commit`, `add`, `branch`, `checkout`, `push`, etc. hebben hun eigen documentatie.
|
|
> Meer informatie: <https://git-scm.com/>.
|
|
|
|
- Voer een Git-subcommando uit:
|
|
|
|
`git {{subcommando}}`
|
|
|
|
- Voer een Git-subcommando uit op een aangepast repository-rootpad:
|
|
|
|
`git -C {{pad/naar/repo}} {{subcommando}}`
|
|
|
|
- Voer een Git-subcommando met een gegeven configuratieset:
|
|
|
|
`git -c '{{config.sleutel}}={{waarde}}' {{subcommando}}`
|
|
|
|
- Toon de algemene help:
|
|
|
|
`git --help`
|
|
|
|
- Toon de help van een specifiek subcommando (zoals `commit`, `log`, enz.):
|
|
|
|
`git help {{subcommando}}`
|
|
|
|
- Toon de versie:
|
|
|
|
`git --version`
|