一 本地分支重命名 git branch -m old new 二 远程分支重命名 删除远程分支(git push --delete origin 分支名)修改本地分支名(git branch -m old new)再将修改好的本地分支推送到远程分支上(git push origin 本地分支名)