赞
踩
git branch -m old new
示例:将dev分支修改为1.0.0
#git branch -m dev 1.0.0
git push origin :远程分支名(你要删除的远程分支名,冒号前是空的,相当于用空的内容去抹掉远程分支)
示例:
#git push origin :dev
git push origin 本地分支名:远程分支名
示例:
#git push origin 1.0.0:1.0.0
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。