git: add Dutch translation (#4611)

beep
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
1 changed files with 28 additions and 0 deletions

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}}`