从公司项目复制迁移到个人仓库

用PowerShell命令

Windows PowerShell 版本:

========================================

完整克隆企业仓库所有分支到个人仓库

========================================

第1步:进入工作目录(可修改为您想要的路径)

cd D:\Projects

第2步:镜像克隆企业仓库(包含所有分支、标签、历史)

Write-Host "正在克隆企业仓库..." -ForegroundColor Green

git clone --mirror https://gitee.com/公司名称XXXXXX/Mall.git Mall-mirror

第3步:进入镜像仓库

cd Mall-mirror

第4步:推送所有内容到个人仓库(所有分支+所有标签)

Write-Host "正在推送到个人仓库..." -ForegroundColor Green

git push --mirror https://gitee.com/个人仓库XXXX/Mall.git

第5步:返回上级目录

cd ...

第6步:删除临时镜像仓库

Write-Host "清理临时文件..." -ForegroundColor Yellow

Remove-Item -Recurse -Force Mall-mirror

第7步:克隆个人仓库用于日常开发

Write-Host "克隆个人仓库..." -ForegroundColor Green

git clone https://gitee.com/个人仓库XXXX/Mall.git

第8步:进入项目目录

cd mall

第9步:查看所有分支

Write-Host "`n所有分支列表:" -ForegroundColor Cyan

git branch -a

完成

Write-Host "`n✅ 完成!所有分支已同步到个人仓库!" -ForegroundColor Green

Write-Host "访问查看: https://gitee.com/个人仓库XXXX/mall" -ForegroundColor Cyan


相关推荐
IT摆渡者4 小时前
VM EXSI7.0存储硬盘故障处理
大数据·linux·github
Narrastory5 小时前
我用 Claude Code 写代码不到 2 小时,却花了 3 天做完这个软件—Vibe Coding 的正确姿势,是设计不是生成
前端·人工智能·github
AI Dog5 小时前
GitHub 项目整体替换与大文件处理指南
github
March.s5 小时前
Nginx 服务器反向代理实战指南
服务器·nginx·github
逛逛GitHub5 小时前
在 Codex 中用这 4 个 SKill,让你拍的照片变高级。
github
村雨遥6 小时前
覆盖提交不等于删除,这才是彻底清除 Git 历史的正确姿势
git·github
FlightYe6 小时前
linux系统编程(八):阻塞与非阻塞IO对比
android·linux·运维·服务器·github·vim
kaixin_啊啊7 小时前
GitHub 开源 Qwen-MM-Plugins 小白入门,给 Codex 装上多模态工具箱
开源·github
anyup7 小时前
【2026年8月】uView Pro 千星,还拿到了 GVP
前端·uni-app·github
独隅18 小时前
GitHub Actions 自动化运维实战:CI/CD 流水线一体化效果展示
运维·自动化·github