git clone
克隆项目
git clone
实际上是一个封装了其他几个命令的命令。 它创建了一个新目录,切换到新的目录,然后 git init
来初始化一个空的 Git 仓库, 然后为你指定的 URL 添加一个(默认名称为 origin
的)远程仓库(git remote add
),再针对远程仓库执行 git fetch
,最后通过 git checkout
将远程仓库的最新提交检出到本地的工作目录。
用法
git clone ssh://[email protected]:000001/demo_app
原文地址:https://www.cnblogs.com/guanxinjing/p/11504960.html
时间: 2024-10-04 11:51:45