Giter Club home page Giter Club logo

Comments (7)

pauldowman avatar pauldowman commented on July 28, 2024

Looks like GitHub-Flavoured Markdown was a bit too smart inside the code block there, those shouldn't be links of course...

from grit.

pauldowman avatar pauldowman commented on July 28, 2024

Crap, I clicked "comment and close" by accident! Can you please re-open? Thanks.

from grit.

technoweenie avatar technoweenie commented on July 28, 2024

Sounds reasonable to me. I feel like Grit::GitRuby should have some tests that compare the GitRuby implementation against the native git version too. If you could come up with a test case that passes with the native command, and fails with GitRuby, that'd be awesome.

from grit.

zmalltalker avatar zmalltalker commented on July 28, 2024

@technoweenie: I have created a repository with three commits; the second one was committed before the other ones (by setting the system clock). There's a clone at https://github.com/zmalltalker/strange_order/commits/master

I have a failing test that creates a Grit::Repo from this repo, collects the commits of it (repo.commits) and verifies that their SHAs are in the wrong order. This test is probably at a too high level, but I'm having a hard time figuring out how to target the tests in a better way, probably because I don't really get what Grit::GitRuby::Repository#rev_list actually does.

Would it help at all putting up that test case, or do you have any ideas on how to target the test better?

from grit.

philandstuff avatar philandstuff commented on July 28, 2024

@technoweenie I have a similar repo which exhibits this issue at https://github.com/philandstuff/grit-rev-list-problem-example

The following session demonstrates the difference in order between cmd-line git and git-ruby:

philippotter ~/tmp/grit-rev-list-problem-example $ git rev-list --pretty=raw master
commit 26c184858e44e109cc525632ed82d840b751bde6
tree 8a27fe8715be0cf38d8301c2eedadc180a787b02
parent e569728aceb65171508b07867610b1c36ad0f268
author Philip Potter <[email protected]> 1329836752 +0100
committer Philip Potter <[email protected]> 1329836752 +0100

    updated file nodes/dir/file.yaml

commit e569728aceb65171508b07867610b1c36ad0f268
tree 17b6d8b73adee6ea2139008db2c3eab2552ee860
author Philip Potter <[email protected]> 1329836752 +0100
committer Philip Potter <[email protected]> 1329836752 +0100

    first commit

philippotter ~/tmp/grit-rev-list-problem-example $ irb
>> require 'grit'
=> true
>> repo = Grit::Repo.new('.')
=> #<Grit::Repo "/Users/philippotter/tmp/grit-rev-list-problem-example/.git">
>> puts repo.git.rev_list({:pretty => "raw"})
commit e569728aceb65171508b07867610b1c36ad0f268
tree 17b6d8b73adee6ea2139008db2c3eab2552ee860
author Philip Potter <[email protected]> 1329836752 +0100
committer Philip Potter <[email protected]> 1329836752 +0100

    first commit

commit 26c184858e44e109cc525632ed82d840b751bde6
tree 8a27fe8715be0cf38d8301c2eedadc180a787b02
parent e569728aceb65171508b07867610b1c36ad0f268
author Philip Potter <[email protected]> 1329836752 +0100
committer Philip Potter <[email protected]> 1329836752 +0100

    updated file nodes/dir/file.yaml

=> nil

from grit.

smarter avatar smarter commented on July 28, 2024

Here's a simple fix for the case where the commit dates are equal(so like https://github.com/philandstuff/grit-rev-list-problem-example but not like https://github.com/zmalltalker/strange_order/commits/master ):

-        log = log.sort { |a, b| a[2] <=> b[2] }.reverse
+        log = log.sort_by.with_index { |a, i| [a[2], -i] }.reverse

This makes the sort stable (see http://bugs.ruby-lang.org/issues/1089) and is enough to fix the issue in this case. Since the commit dates of rebased commits are all equal, this is an important issue, see for example the wrong order at https://gitorious.org/~smarter/libav/smarter-libav/commits/hevc and the corresponding bug report at https://issues.gitorious.org/issues/94 .

from grit.

bkeepers avatar bkeepers commented on July 28, 2024

Grit is no longer maintained. See #183 and check out libgit2/rugged.

from grit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.