查看本地及远程分支

git branch -a

切换远程分支

git checkout -b V2.0.1 origin/V2.0.1

删除本地分支

git branch -d V2
Scroll to Top