git分支修改名称并推送到远程

1、修改本地分支名称
git branch -m oldBranchName newBranchName

git push origin :oldBranchName

3、将改名后的本地分支推送到远程,并将本地分支与之关联
git push --set-upstream origin newBranchName

你可能感兴趣的:(git,npm,git)