2020-10-21 18:27:59 +01:00
|
|
|
# git clone
|
|
|
|
|
|
|
|
> Klone ein existierendes Repository.
|
|
|
|
> Mehr Informationen: <https://git-scm.com/docs/git-clone>.
|
|
|
|
|
|
|
|
- Klone ein existierendes Repository:
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
`git clone {{url_zu_repository}}`
|
2020-10-21 18:27:59 +01:00
|
|
|
|
|
|
|
- Klone ein existierendes Repository und seine Submodule:
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
`git clone --recursive {{url_zu_repository}}`
|
2020-10-21 18:27:59 +01:00
|
|
|
|
|
|
|
- Klone ein lokales Repository:
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
`git clone -l {{pfad/zu/lokalem_repository}}`
|
2020-10-21 18:27:59 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Klone ohne Meldungen:
|
2020-10-21 18:27:59 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
`git clone -q {{url_zu_repository}}`
|
2020-10-21 18:27:59 +01:00
|
|
|
|
|
|
|
- Klone ein existierendes Repository und rufe nur die neusten 10 Commits im standardmäßigen Branch ab (spart Zeit):
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
`git clone --depth {{10}} {{url_zu_repository}}`
|