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

用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


相关推荐
OpenTiny社区17 小时前
从零开发 AI 聊天页要两周?试试这款 Vue3 垂直对话组件库 TinyRobot,直接开箱即用
前端·vue.js·github
逛逛GitHub17 小时前
2 万多 Star!Google 开源了这个神级 GitHub 项目。
github
逛逛GitHub19 小时前
免费 Token 烧掉 5 万亿之后,他们出了个一站式创作平台。
github
用户8055336980319 小时前
RK-Forge外设系列开篇 - 把板子从「能启动」变成「能用」:Ethernet/SPI/MMC 三个纯接线外设
linux·github·嵌入式
inhere20 小时前
eget:不用等中央仓库,直接安装 GitHub 和任意下载站的工具
程序员·开源·github
YuePeng2 天前
写了五年注解的低代码框架,2.0 决定让你连注解都不用写了
github·产品
小白ai2 天前
从"能 ping 通吗"到"为什么上不了网"——我写了一个网络故障诊断引擎
github
徐小夕2 天前
jitword 协同文档3.2发布:打造浏览器中最强word编辑器
前端·架构·github
齐翊2 天前
分享一个在 Claude Code 里 [同时] 用多个 ApiKey 的方法
程序员·github·agent
A_Lonely_Cat2 天前
记一次 GitHub 幽灵协作者大清洗:强制重写 Git 历史与穿透 CDN 缓存实践
git·github