Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 434 Bytes

shallow-clone.md

File metadata and controls

11 lines (9 loc) · 434 Bytes

Git Shallow Clone

When cloning a Git repository to a build machine, you can reduce the size and increase the download speed significantly by doing a shallow clone. A shallow clone only gets the most recent commit with the command --depth=1. It is often combined with --single-branch --branch=<branch> to only pull a single branch.

git clone --depth=1 --single-branch --branch=release [email protected]:rprouse/repo.git