1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 12:26:03 +02:00

git: add Dutch translation (#4611)

This commit is contained in:
Jennifer 2020-10-12 23:03:33 +02:00 committed by GitHub
parent 323e9c0b46
commit 5a632be49a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

28
pages.nl/common/git.md Normal file
View file

@ -0,0 +1,28 @@
# 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}}`