常用命令

1、查看远程分支

git branch -a

2、查看本地分支

git branch

3、同步远程代码到本地

git fetch origin release-3.2

4、切换分支

git checkout release-3.2