mirror of https://github.com/CrimsonTome/tldr.git
29 lines
555 B
Markdown
29 lines
555 B
Markdown
|
# git
|
||
|
|
||
|
> Gedistribueerd versiebeheersysteem.
|
||
|
> Meer informatie: <https://git-scm.com/>.
|
||
|
|
||
|
- Controleer de Git versie:
|
||
|
|
||
|
`git --version`
|
||
|
|
||
|
- Toon algemene hulp:
|
||
|
|
||
|
`git --help`
|
||
|
|
||
|
- Toon hulp bij een Git-subcommando (zoals `commit`, `log`, enz.):
|
||
|
|
||
|
`git help {{subcommando}}`
|
||
|
|
||
|
- 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}}`
|