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

用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


相关推荐
阿里嘎多学长1 小时前
2026-07-22 GitHub 热点项目精选
开发语言·程序员·github·代码托管
小蠢驴打代码1 小时前
记忆库能通过测试,不等于回答值得信:Coding Agent Memory 的两层评估设计
github·ai编程
武子康2 小时前
Copilot Code Review 从固定 Reviewer 演进为可编程 Runtime,仓库控制面、Setup 供应链、Runner 资源和 MCP 工具同时被纳入审查决策
人工智能·github·aigc
wangruofeng12 小时前
opencodex 解锁 Codex 任意模型,一个本地代理打通 Claude/Kimi/GLM/DeepSeek
llm·github·openai
一点一木14 小时前
从60首歌到1个网站:输入你的故事,还你一首歌
前端·github
刘较瘦_19 小时前
AI 开发中的 Git Submodule 父子仓库模式:前后端分仓管理与协作实践
前端·github
DeMinds21 小时前
内容没有丢,我为什么总在重新整理?|DeMinds 如何让工作接着继续
ios·github·markdown
寒水馨1 天前
macOS下载、安装openclaw-v2026.7.1(附安装包OpenClaw-2026.7.1.dmg)
macos·大模型·github·开源软件·ai助手·openclaw·gpt-5.6
徐小夕1 天前
花了3天,我写了一款开源AI公众号编辑器
前端·vue.js·github