tldr/pages.nl/common/git.md

30 lines
668 B
Markdown
Raw Normal View History

2020-10-12 22:03:33 +01:00
# git
> Gedistribueerd versiebeheersysteem.
2023-11-23 13:58:02 +00:00
> Sommige subcommando's zoals `commit`, `add`, `branch`, `checkout`, `push`, etc. hebben hun eigen documentatie.
2020-10-12 22:03:33 +01:00
> 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}}`