svn项目同步到gitLab

安装git

确保安装了git

新建一个文件夹svn-git

在文件夹中新建userinfo.txt文件,映射svn用户,这个文件主要是用于将SVN用户映射为Git用户(昵称及其邮箱)。

userinfo.txt具体格式如下:

复制代码
admin = admin <[email protected]>
lisi= lisi<[email protected]>
lmh = lmh <[email protected]>
ql = ql <[email protected]>

Clone SVN项目至本地Git

进入svn-git文件夹,右键"git Bash"打开git命令窗口,然后执行命令:

复制代码
git svn clone "svn://47.92.83.81/test-repo"  --authors-file=userinfo.txt

#切换git账号:win+r 输入control打开"用户账户"-》"管理凭据",删除git凭据
git config --global user.name "root"
git config --global user.email"[email protected]"

git remote add origin http://39.98.166.121:9980/root/test-repo.git
#创建main分支(PS:如果报"error: src refspec main does not match any",执行)
git checkout -b main
git pull --rebase origin main
git push -u origin main

参考文档

svn 代码迁移到git_svn代码迁移到git-CSDN博客

相关推荐
困觉少年4 小时前
我该怎么设置SVN客户端的认证信息?
svn
逍遥天下0071 天前
svn提交时候,要写注释
svn
乄bluefox2 天前
解决GitLab无法拉取项目
gitlab
涛ing2 天前
【Git “fetch“ 命令详解】
linux·c语言·c++·人工智能·git·vscode·svn
never_go_away3 天前
SVN server on ubuntu
linux·ubuntu·svn
laugh123214 天前
GitLab 服务器宕机时的项目代码恢复方法
服务器·git·gitlab·数据恢复
Beyond欣4 天前
RepoReporter 仿照`TortoiseSVN`项目监视器,能够同时支持SVN和Git仓库
git·svn
路由侠内网穿透7 天前
本地部署仓库管理工具 Gitlab 并实现外部访问
linux·运维·服务器·网络协议·tcp/ip·gitlab
码农葫芦侠7 天前
GitLab CI/CD学习教程(第四章gitlab-ci.yml)
学习·ci/cd·gitlab
极小狐7 天前
GitLab 中文版17.10正式发布,27项重点功能解读【三】
安全·gitlab·devsecops·devops