git clone命令使用实例
{ 基础命令 }
git clone https://yiilib.com/demo/demo.git --depth 1
git clone ssh://yiilib.com/demo/demo.git --depth 1
无账号密码需求
--depth 1 代表克隆深度, 一般在非开发环境, 例如线上部署的时候会使用这个参数, 无需下载冗余数据
{ 进阶命令 }
git clone https://lee@yiilib.com/demo/demo.git --depth 1
git clone ssh://lee@yiilib.com/demo/demo.git --depth 1
需要使用账号密码,
https会在命令输入后要求输入账号密码
ssh 可以直接在git服务器上存储ssh key
留言