赞
踩
最近公司因项目拆分,要将原有代码移植到新的 Git
项目组。刚开始是想把代码直接拷贝过去,但提交的历史信息和原有分支就会丢失。于是网上找了下方法具体操作了一次可行,这里就记录一下。
git clone --mirror https://github.com/xxxxxxx/oldProject.git
cd oldProject.git
git remote set-url –-push origin https://github.com/xxxxxxx/newProject.git
git push –-mirror
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。