Git 迁移到 SVN 全

一、克隆 SVN 项目,转为 Git 管理的项目

git svn clone svn://yip@112.74.112.220/ecs/branches/responsive/ios/XXX --no-metadata --trunk Trunk --branches Branches --tags Tags XXX

参数说明:
–no-metadata :阻止 Git 导出 SVN 包含的附加信息,这样提交到Git的记录会很“干净”
trunk:主分支(对应 SVN 上的 trunk 文件名,branches 和 tags 同理)
XXX:项目名称

执行过程中根据提示,输入 SVN 账号名跟密码

二、调整版本管理结构,以符合 Git 管理规范

1、查看项目提交的历史记录

git log

// 显示如下
commit 8b997ea9d70a7b8a2f31747b3558aa4daa0a6ba3 (HEAD -> master)
Author: yip <yip@mondial-d/com>
Date:   Wed May 17 16:20:56 2017 +0800

    [ XXX ] <Tags> V1.1.0 build 9.
    What's New
    - Language version updates
    - Photo measurement optimisation
    - Bug fixes

2、查看分支情况

git branch -r

// 显示如下
  origin/tags/V1.0.0
  origin/tags/V1.0.0@2604
  origin/tags/V1.0.0@3096
  origin/tags/V1.0.1
  origin/tags/V1.0.1@2640
  origin/tags/V1.0.1@2650
  origin/tags/V1.0.2
  origin/tags/V1.0.2@2718
  origin/tags/V1.0.3
  origin/tags/V1.0.3@2721
  origin/tags/V1.1.0
  origin/tags/V1.1.0@3030
  origin/tags/V1.1.0@3099
  origin/trunk

3、手动将 branches 分支的 tags 路径转为 tags

git tag V1.0.0 origin/tags/V1.0.0@3096 -a

// vim会打开一个文本,按键盘i,填写注释(栗子如下),填完后,按键盘 Esc -> :wq -> 回车
[ XXX ] <Tags> V1.1.0 build 9.
    What's New
    - Language version updates
    - Photo measurement optimisation
    - Bug fixes

// 查看 Tags 及注释(5代表注释的行数)
git tags -n5

4、删除多于的 branches

git branch -r -d origin/tags/V1.0.0@3096

// 显示如下
Deleted remote-tracking branch origin/tags/V1.0.0@3096 (was 6049c17).

5、最后检查多余分支是否删除干净

git branch -r

// 显示如下,OK!
  origin/trunk

三、创建远程 Git 空仓库

创建比较简单,忽略该步骤,仓库包含 .gitignore,LICENSE 即可。
如有需要,可以在评论区留言,我会补充。

四、绑定 Git 仓库

1、查看 Git 是否有源(什么都没有显示,表示没有源,OK!)

git remote -v 

2、添加 Git 源

// 添加
git remote add origin https://git.oschina.net/fash-tech/XXX.git
// 查看:是否添加成功
git remote -v 
// 成功:显示如下
origin  https://git.oschina.net/fash-tech/XXX.git (fetch)
origin  https://git.oschina.net/fash-tech/XXX.git (push)

五、将本地 Git 推送到远程

1、下拉远程 Git 仓库

git pull origin master --allow-unrelated-histories

2、推送本地全部分支以及标签信息,OK!

git push -u origin master --tags

六、检查:

1、克隆远程 Git 仓库项目

git clone https://git.oschina.net/fash-tech/XXX.git

2、运行项目看是否成功,OK!

3、保证克隆下来的项目未作修改的前提下(除了 Pod 以外),检查 .gitignore 是否无疏漏,如有疏漏,更新 .gitignore ,并推送到远程 Git 仓库

git status

// 如果显示如下
    Podfile.lock
    XXX.xcworkspace/
// 把需要忽略的文档加入 .gitignore
    #XXX
    Podfile.lock
    XXX.xcworkspace/
// 提交推送
git add ../.gitignore
git commit -m "modified .gitignore"
git push origin master -u

参考资料:

8.2 Git 与其他系统 – 迁移到 Git
https://git-scm.com/book/zh/v1/Git-%E4%B8%8E%E5%85%B6%E4%BB%96%E7%B3%BB%E7%BB%9F-%E8%BF%81%E7%A7%BB%E5%88%B0-Git

将代码库从 SVN 迁移至 Git 并保留所有 commit 记录
http://www.lovelucy.info/codebase-from-svn-to-git-migration-keep-commit-history.html

svn 迁移到git下全过程
http://www.aikaiyuan.com/6584.html

git与svn 共舞
https://www.chenyudong.com/archives/git-and-svn-collaboration.html

SVN迁移到Git的过程(+ 一些技巧)
http://www.blogjava.net/lishunli/archive/2012/01/15/368562.html

    原文作者:CoderJackieYip
    原文地址: https://www.jianshu.com/p/99ec32050c42
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞