git bash操作指令
克隆项目指定分支:
# <branchname> 分支名,<remote-repo-url> 远程仓库url
git clone --branch <branchname> <remote-repo-url>
或
git clone -b <branchname> <remote-repo-url>
查看项目仓库的分支列表
# 进入项目目录中
git branch -a
克隆项目指定分支:
# <branchname> 分支名,<remote-repo-url> 远程仓库url
git clone --branch <branchname> <remote-repo-url>
或
git clone -b <branchname> <remote-repo-url>
查看项目仓库的分支列表
# 进入项目目录中
git branch -a