git checkout -b " 分支名称 ”
git修改远程仓库地址方法有三种:
1.修改命令git remote origin set-url [url]
2.先删后加 git remote rm origin
git remote add origin [url]
git branch -m old_branch new_branch
第二步:删除远程分支git push origin :old_branch
第三步:将本地新分支 push 到远程git push origin new_branch
第四步:取消之前设置的 upstreamgit branch --unset-upstream
第五步:将新分支设为 upstreamgit push --set-upstream origin new_branch
备注如果老分支配置过 upstream,前三步之后,本地仍然默认为老分支,不能用简洁的 git push 命令提交代码
进行第四步和第五步,将 upstream 设为新分支,就可以用 git push 命令来提交代码了