git迁移项目到另一个仓库
1. 克隆原仓库oldProject的镜像
git clone --mirror http://192.41.56.3:8888/demo/app.git
2. 进入这个目录
cd app.git/
3. 在github上创建一个新仓库
4. 设置需要迁移的目标路径
git remote set-url --push origin
http://192.41.56.3:8888/istorm-storage/demo1/app.git
5. 推送
git push --mirror