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

用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


相关推荐
STDD12 小时前
Soulmask《灵魂面具》 专用服务器搭建教程
运维·服务器·github
lolo大魔王12 小时前
Linux的监测程序
linux·运维·github
米高梅狮子15 小时前
Redis
数据库·redis·mysql·缓存·docker·容器·github
_Evan_Yao16 小时前
如何搭建属于自己的技术博客(CSDN / GitHub Pages)
后端·学习·github
Quirkybrain17 小时前
从多态调用到简单析构:C 语言里的对象生命周期管理
github
加贝哥|usun17 小时前
最佳实践分享:GitHub项目自动同步到Gitee(码云)
gitee·github
m0_6346667317 小时前
ViMax 为什么会冲上 GitHub Trending:AI 视频生成开始从“出片”转向“制片”
人工智能·github·ai编程
JAVA学习通19 小时前
《大营销平台系统设计实现》 - 营销服务 第5节:抽奖前置规则过滤
java·数据库·github
少司府20 小时前
Tools相关:深入浅出学Git
大数据·c++·git·gitee·github·仓库·分支
ChampaignWolf20 小时前
Eclipse + GitHub Copilot = Lightspeed SAP ABAP Development
eclipse·github·copilot