Git远程分支到本地
过程
新建空文件夹
Git初始化
在目标文件夹执行
git init
建立与origin master的连接
git remote add origin git@gitee.com:xxxx/xxxx.git
把远程分支拉到本地
git fetch origin remote_branch_name
在本地创建相同分支并切换到该分支
git checkout -b local_branch_name origin/remote_branch_name
把分支内容都拉取到本地
git pull origin remote_branch_name
参考:https://blog.csdn.net/carfge/article/details/79691360
Clone方法
cd 目标文件夹
git clone git仓库的HTTP链接