1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| git remote -v
git remote rm origin git remote add github git@github.com:geekhall/geekhall.cn.git git remote add gitee git@gitee.com:sjdt/geekhall.cn.git
git pull gitee main --allow-unrelated-histories git pull github main --allow-unrelated-histories
git push --set-upstream github main git push --set-upstream gitee main
git push gitee main git push github main
|