tldr/pages/common/git-clone.md

25 lines
535 B
Markdown
Raw Normal View History

2015-10-22 08:31:52 +01:00
# git clone
2014-03-09 12:20:13 +00:00
> Clone an existing repository.
2019-01-30 11:19:23 +00:00
> Homepage: <https://git-scm.com/docs/git-clone>.
2014-03-09 12:20:13 +00:00
- Clone an existing repository:
2014-03-09 12:20:13 +00:00
`git clone {{remote_repository_location}}`
2014-03-09 12:20:13 +00:00
- Clone an existing repository and its submodules:
`git clone --recursive {{remote_repository_location}}`
- For cloning from the local machine:
2014-03-09 12:20:13 +00:00
`git clone -l`
- Do it quietly:
2014-03-09 12:20:13 +00:00
2015-10-22 08:31:52 +01:00
`git clone -q`
- Clone an existing repository, and truncate to the specified number of revisions, save your time mostly:
2017-12-29 06:02:01 +00:00
`git clone --depth {{10}} {{remote_repository_location}}`