Clone a repository into a new directory
将已有存储库克隆到新目录中
克隆一个现有项目和它的整个版本历史。<url>
为项目路径,该路径可为本地路径,亦可是远程服务端路径。
git clone <url># 本地仓库git clone /path/to/repository# 远程仓库git clone username@host:/path/to/repository
git clone -b <branch-name> --single-branch <url>
📍 示例:
git clone -b master --single-branch https://github.com/tsejx/git-guidebook.git