git切换仓库后同步代码 2021-09-09 git 字数统计: 118(字) 阅读时长: 1(分) git仓库需要迁移到新的服务器,现在需要把所有的代码同步到新的仓库。 1、获取源仓库所有分支 12345git clone <源仓库>cd <项目名称>git branch -r | awk -F'origin/' '!/HEAD|master/{print $2 " " $1"origin/"$2}' | xargs -L 1 git branch -f --track git fetch --all --prune --tagsgit pull --all 2、同步到自己的仓库 1234git remote set-url origin <新仓库地址>git pullgit push --allgit push --tags