1.检查分支
git branch -a
2.切换到develop分支下
git checkout develop
3.删除本地分支
git branch -d feature/v1.0
4.检查分支,并更新远程分支
git remote update origin -p
5.切换分支
git checkout release/v1.0
1.检查分支
git branch -a
2.切换到develop分支下
git checkout develop
3.删除本地分支
git branch -d feature/v1.0
4.检查分支,并更新远程分支
git remote update origin -p
5.切换分支
git checkout release/v1.0