第一步:检查当前状态
git status //确保你的工作目录是干净的。如果有未提交的更改,先进行提交。
第二步:添加远程仓库地址
git remote add origin xxx(新的仓库地址) //将新的远程仓库添加到本地仓库:
如已存在 origin 且需要替换,运行:
git remote set-url origin xxx(新的仓库地址)
第三步:切换到对应分支
git checkout -b branch_name // 确保切换到需要与远程同步的分支。
第四步:同步远程仓库分支
git push -u origin branch_name
第五步:验证远程配置
git remote -v //确认远程仓库是否已正确设置
第六步: 验证最终结果
git branch -vv //确认 new-branch-name 已关联到新的远程仓库