一次性拉取所有远程仓库分支到本地并推送到另外一个仓库
发布于:2023-11-10 10:49:29
标签:/
git
/
访问:
拉取所有远程仓库分支到本地并推送到另外一个仓库
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
git clone old_ssh_registry
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git remote add gitlab new_ssh_registry
git pull gitlab --all
|