最近上传github代码越来越慢了,不晓得哪里问题,今天传了俩小时没成功,决定全部迁移到gitee上。
创建gitee帐号,加号下从github导入仓库
选择导入github仓库,然后选择仓库导入即可,很快完成。
ssh-keygen -t rsa -C "xxxxx@xxxxx.com"
git remote -v
//查看当前的分支
git remote remove origin
//将当前的分支移除(因为以后不准备再用了,如果还用的话就不要删除)
git remote add gitee git@gitee.com:chrunlee/p_wechat.git
//将gitee分支添加到本地
//提交的时候设置分支管理
git pull --set-upstream gitee
//更新拉取的时候设置upstream
git branch --set-upstream-to=gitee/<branch> master
转载请注明出处: https://chrunlee.cn/article/github-to-gitee.html