前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >2018-10-16 svn迁移到Git svn上r80000个哭

2018-10-16 svn迁移到Git svn上r80000个哭

作者头像
Albert陈凯
发布2018-10-22 15:14:05
4970
发布2018-10-22 15:14:05
举报
文章被收录于专栏:Albert陈凯Albert陈凯

这活不应该是Linux管理员的干的吗?什么时候轮到程序员了,操蛋,想清楚自己是干啥的,是为了工作而工作还是为了目标而工作

做完一次发现原来好简单哦,但这话你应该跟别人说嘛?

没心情整理文章,下面是做这个事情参考的部分资料,读完加上动手能力应该可以搞定这件事了,这是我踩坑的?

最开始follow这个doc做的 https://www.zybuluo.com/Jazka/note/173956 可是好多坑

后来又参考了 https://cloud.tencent.com/developer/section/1138668

参考资料比较靠前的几个比较好用

由于Giglab上创建项目的时候自动创建了readme.md 所以push不上去 https://github.com/LeachZhou/blog/issues/11

参考资料: SVN切换到Git方法及坑点 https://oliverqueen.cn/2018/08/23/ChangeSvnToGit/ 如何从SVN迁移源码到Git仓库 https://blog.waterstrong.me/svn-to-git-migration/ svn迁移到git那些事 https://www.jianshu.com/p/de12fc2d7af2 svn项目迁移到git https://www.jianshu.com/p/5dcf658851f7 Subversion版本庫匯入Git的步驟與SVN整合步驟 http://jdev.tw/blog/4256/svn-git-integration

study4.tw

https://blog.alantsai.net/posts/2017/06/git-svn-usage

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 https://www.lovelucy.info/codebase-from-svn-to-git-migration-keep-commit-history.html https://segmentfault.com/a/1190000007039598

http://androider.iteye.com/blog/1423847 https://blog.csdn.net/hufengvip/article/details/8046145

http://www.blogjava.net/lishunli/archive/2012/01/15/368562.html

https://my.oschina.net/u/199525/blog/1556989

https://www.topjishu.com/6584.html

唉,这么好做的一件事,何必要看这么多文章呢?

相关文章

你可能还需要安装和使用Git lab,

https://www.jianshu.com/p/8b4d39ff8f89 https://blog.cnbluebox.com/blog/2014/04/15/gitlabde-shi-yong/ https://yq.aliyun.com/articles/74395 git修复commit记录 https://blog.csdn.net/hwz2311245/article/details/50599759

我装的时候没碰到困难所以没啥印象

代码语言:javascript
复制
206  sudo yum install -y curl policycoreutils-python openssh-server
  207  sudo systemctl enable sshd
  208  sudo systemctl start sshd
  209  sudo firewall-cmd --permanent --add-service=http
  210  sudo systemctl reload firewalld
  211  sudo firewall-cmd --permanent --add-service=http
  212  sudo systemctl start sshd
  213  sudo yum install postfix
  214  sudo systemctl enable postfix
  215  sudo systemctl start postfix
  216  pwd
  217  curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh | sudo bash
  218  curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
  219  ls
  220  ll
  221  sudo EXTERNAL_URL="http://gitlab.example.com" yum install -y gitlab-ce
  222  netstat -lnpt
  223  gitlab-ctl reconfigure
  224  netstat -l
  225  netstat -lnpt
  226  curl localhost

当然可能你已经决定了要用Git,但还不够了解

《走进git时代系列一》 你该怎么玩? https://yq.aliyun.com/articles/5843 《走进git时代系列二》 从SVN迁移到GIT教程 https://yq.aliyun.com/articles/6046 《走进git时代系列三》详解部分git思想及SVN/GIT命令对比解析 https://yq.aliyun.com/articles/7441

GitHub 系列之「Git速成」 https://juejin.im/post/5a3100ebf265da432f311e9e

你可能还要掌握的Git概念 https://juejin.im/post/5af26c4d5188256728605809

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018.10.16 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 你可能还需要安装和使用Git lab,
  • 我装的时候没碰到困难所以没啥印象
  • 当然可能你已经决定了要用Git,但还不够了解
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档