Project

General

Profile

Actions

Feature #14551

closed

What's missing to switch to Git instead of using Subversion?

Added by Eregon (Benoit Daloze) about 6 years ago. Updated about 6 years ago.

Status:
Rejected
Target version:
-
[ruby-core:85805]

Description

I know migrating to Git get asked at least every year at RubyKaigi, and this should be a motivation to change.
#14470 is one example making me wonder why we still use such an ancient technology like Subversion.

To be clear, this does NOT mean changing the issue tracker, that is orthogonal.

  1. I have heard some scripts might stop working if we switch to Git and nobody knows a list of those scripts.
    But, can't we just switch and adapt them as needed?
    As long as this is not close to a release, I expect there will be a couple days where scripts are fixed
    but after that pretty much everything should work just as well as before.

  2. Are there Ruby committers still using Subversion? I would guess the vast majority is using Git.
    Could they use https://help.github.com/articles/support-for-subversion-clients/ maybe if they want to keep using Subversion?

  3. Does Redmine lack Git support? Is there an estimation of how much work it would take to add it?

  4. Something else?

Advantages include:

  • External people can contribute more directly with Pull Requests on GitHub, if they want (which is what most external contributors do).
    There is no need to squash their commits or manually checkout their branch, which delays integration significantly and loses the original author in the process
    (only mentioned as text while they really deserve to be marked as having contributed to Ruby).
  • We use a non-obsolete technology and don't look like a language from the past.
  • The setup for contributing to Ruby becomes much simpler (git clone, not a mix of SVN/git all the time)
  • Many others advantages but listing them is not the point of this issue.

Related issues 2 (0 open2 closed)

Related to Ruby master - Feature #11741: Migrate Ruby to Git from SubversionRejectedActions
Related to Ruby master - Misc #10547: How to move the ruby project to gitRejectedhsbt (Hiroshi SHIBATA)Actions
Actions #1

Updated by Eregon (Benoit Daloze) about 6 years ago

  • Related to Feature #11741: Migrate Ruby to Git from Subversion added
Actions #2

Updated by Eregon (Benoit Daloze) about 6 years ago

  • Related to Misc #10547: How to move the ruby project to git added

Updated by shevegen (Robert A. Heiler) about 6 years ago

For point #1, perhaps the issue here could collect all files that
would need modification (or a new file that handles git; though
ideally, the existing files could be adapted to use both svn
and git, so that if it is ever decided to change, the infrastructure
would already work).

Updated by hsbt (Hiroshi SHIBATA) about 6 years ago

  • Status changed from Open to Assigned
  • Assignee set to hsbt (Hiroshi SHIBATA)

I have a plan to migrate git from subversion. But I have no enough time to figure out it.
Because I need to update the infrastructure of distribution and mailing-list in this year.

Updated by naruse (Yui NARUSE) about 6 years ago

  • Status changed from Assigned to Rejected

Duplicated with #10547

  1. I have heard some scripts might stop working if we switch to Git and nobody knows a list of those scripts.

You can find some of those scripts in tool/ of ruby's repo.

  1. Are there Ruby committers still using Subversion? I would guess the vast majority is using Git.
    Could they use https://help.github.com/articles/support-for-subversion-clients/ maybe if they want to keep using Subversion?

Advantages include:

  • External people can contribute more directly with Pull Requests on GitHub, if they want (which is what most external contributors do).

You need to read previous discussion in detail.
#10547 has a point.

Updated by Eregon (Benoit Daloze) about 6 years ago

naruse (Yui NARUSE) wrote:

You need to read previous discussion in detail.
#10547 has a point.

What's the point?
That we need a planner showing the merits and listing issues?

The title of #10547 sounds like that issue should be about listing issues to move to Git but as far as I see there is no list of issues there.
This is why I filed this issue.
I think it would be valuable to answer my 4 questions above about what are the problems to migrate to Git.
Some people might be willing to help once it's clear what needs to be done.

Updated by dsferreira (Daniel Ferreira) about 6 years ago

Eregon (Benoit Daloze) wrote:

Some people might be willing to help once it's clear what needs to be done.

If it is an extra pair of hands you are looking for I can volunteer.
A clean git development environment is something I'm looking forward in ruby for a long time.
So count on me to help.

Updated by duerst (Martin Dürst) about 6 years ago

Two points that would be worse for git, the first is general, the second is personal:

  1. Revisions become meaningless hashes; it's totally impossible to look at a revision id and know where it fits in relation to other revision ids.
  2. Forking, making a change, and sending it back as a pull request is easy. But staying in sync over the long term is not. As an example, https://github.com/duerst/ruby says "This branch is 8734 commits behind ruby:trunk". I have asked people from github (incl. Aaron Paterson) to add a "sync me up" button besides this message, but that hasn't happened yet, even if to me this seems to be a non-brainer. And if I try to fork again, it tells me that I already have a fork.

Updated by nobu (Nobuyoshi Nakada) about 6 years ago

duerst (Martin Dürst) wrote:

  1. Revisions become meaningless hashes; it's totally impossible to look at a revision id and know where it fits in relation to other revision ids.

The revision shown by ruby -v can be managed by adding a tag REV_xxxxx, where xxxxx is the svn revision of the tagged commit.
See VCS::GIT.get_revisions in tool/vcs.rb.

  1. Forking, making a change, and sending it back as a pull request is easy. But staying in sync over the long term is not. As an example, https://github.com/duerst/ruby says "This branch is 8734 commits behind ruby:trunk". I have asked people from github (incl. Aaron Paterson) to add a "sync me up" button besides this message, but that hasn't happened yet, even if to me this seems to be a non-brainer. And if I try to fork again, it tells me that I already have a fork.

I experienced it today too.
But it is an issue of github, not git itself.

Note that git doesn't equal github.
I think probably few committer are against moving to git, but some are against moving to github because of their policy.

Updated by normalperson (Eric Wong) about 6 years ago

wrote:

Two points that would be worse for git, the first is general,
the second is personal:

  1. Revisions become meaningless hashes; it's totally
    impossible to look at a revision id and know where it fits in
    relation to other revision ids.

"git describe" can help give you a rough age iff we tag
off trunk (or merge the release branches back to trunk);
but it currently doesn't work for our repository.

But being a decentralized system, git history is non-linear and
reliance on serial numbers can be misleading. Decentralization
is an alien concept to a lot of people, so they rely on
centralized messaging systems (e.g. GitHub, Redmine instances)
to make sense of it :<

In contrast, git and Linux kernel development messaging is
peer-to-peer: developers all email each other directly.
The mailing lists are merely an agreed-upon logging/broadcast
channel.

  1. Forking, making a change, and sending it back as a pull
    request is easy. But staying in sync over the long term is
    not. As an example, https://github.com/duerst/ruby says "This
    branch is 8734 commits behind ruby:trunk". I have asked people
    from github (incl. Aaron Paterson) to add a "sync me up"
    button besides this message, but that hasn't happened yet,
    even if to me this seems to be a non-brainer. And if I try to
    fork again, it tells me that I already have a fork.

You can use "git rebase" (or "git merge"(*)) locally for that
and push to a new branch. Doing it via a web interface falls
down once you hit conflicts and need to fix+test locally.
There's no need to rely on proprietary tools at all.

(*) I do caution against criss-cross merging because it makes
history confusing to follow; rebase is often nicer because
it allows you to clean up the history for presentation.
Generally, merges should be done by the designated upstream
and resolved there, not by downstream.

Updated by Eregon (Benoit Daloze) about 6 years ago

  1. Revisions become meaningless hashes; it's totally impossible to look at a revision id and know where it fits in relation to other revision ids.

Looking at the committer date is enough to know the relation if we rebase (which is similar to what is done with subversion).

  1. Forking, making a change, and sending it back as a pull request is easy. But staying in sync over the long term is not. As an example, https://github.com/duerst/ruby says "This branch is 8734 commits behind ruby:trunk". I have asked people from github (incl. Aaron Paterson) to add a "sync me up" button besides this message, but that hasn't happened yet, even if to me this seems to be a non-brainer. And if I try to fork again, it tells me that I already have a fork.

For committers, there is no need to use GitHub.
So committers would just push to the official ruby git repository, just like with SVN.

For pull requests on GitHub for non-committers which want to use GitHub, it shouldn't matter whether their fork is up to date or not.
In a normal setup, there is the official ruby repository as the upstream/origin remote, and their fork as an extra remote.
Then new branches should be pushed on their fork for pull requests, but should be rebased on top of the official ruby repository's master branch, not the fork's.

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0