git 分支查看与切换
# 1.查看所有分支 > git branch -a
# 2.查看当前使用分支(结果列表中前面标*号的表示当前使用分支) > git branch
# 3.切换分支 > git checkout 分支名