git查看分支 -切换分支

1.查看当前分支
git branch -a

2.查看本地分支
git branch

3.切换分支到test
git checkout test

4.克隆项目
git clone 项目地址

你可能感兴趣的:(Git-版本控制系统)