git操作集锦

git-更改本地和远程分支的名称

git branch -m old_branch new_branch# Rename branch locallygit push origin :old_branch# Delete the old branchgit push--set-upstream origin new_branch# Push the new branch, set local branch to track the new remote

你可能感兴趣的:(git操作集锦)