使用命令行导入已有git仓库

github导入到gitee为例

  1. 克隆待导入的git仓库
git clone --bare https://github.com/kmalloc8/old.git
  1. 把该仓库推送到新的仓库
cd old.git
git push --mirror https://gitee.com/kmalloc8/new.git
  1. 删除
cd ..
rm -rf old.git

你可能感兴趣的:(使用命令行导入已有git仓库)