关于git:将github上的开源项目移动到gitee码云上

36次阅读

共计 173 个字符,预计需要花费 1 分钟才能阅读完成。

1. 复制原来 github 中的仓库地址

2. 在 gitee 码云中点击从 GitHub/GitLab 导入仓库

3. 在 gitee 中粘贴刚刚复制都 github 仓库地址后点击导入

如果原来曾经增加过,要先删除

git remote remove gitee

执行下面三步当前增加一下

git remote add gitee 码云仓库地址

最初推送

git push -u gitee master

正文完
 0