schacon / git-ruby

A pure ruby implementation of Git - unmaintained. See grit for an active project that has inherited much of this code.

This URL has Read+Write access

name age message
file LICENSE Sat Mar 08 17:54:39 -0800 2008 Initial checkin of git-ruby library, derived fr... [schacon]
file README Sun Nov 02 16:46:32 -0800 2008 reverted testing [schacon]
file README.markdown Tue Aug 26 12:00:55 -0700 2008 updated the README due to non-maintenance of th... [schacon]
file Rakefile Sun Nov 02 16:46:32 -0800 2008 reverted testing [schacon]
file TODO Mon Mar 31 10:56:28 -0700 2008 added gitr to the gem package as a binary, begi... [schacon]
directory bin/ Sat Apr 05 11:37:06 -0700 2008 added bunches of options to the log() function ... [schacon]
directory lib/ Sat Apr 05 11:37:06 -0700 2008 added bunches of options to the log() function ... [schacon]
directory tests/ Sat Apr 05 11:37:06 -0700 2008 added bunches of options to the log() function ... [schacon]
README.markdown

Git-Ruby Is Not Maintained

The Git-Ruby project is no longer maintained by me. I will leave it up here for now, but almost all of this code has since been incorporated into the Grit project (http://github.com/schacon/grit) and works much, much better. If you're interested in using Git from Ruby, please check out Grit (specifically the schacon/grit fork) - it does as much as it can from Ruby and falls back to system calls if it needs to. The API is different, but the project is being actively maintained.

Git Library for Ruby

A pure ruby implementation of Git

Homepage

Git public hosting of the project source code and project wiki is at:

http://github.com/schacon/gitruby

Gitr

I have included a command line pure-ruby git client called 'gitr'

The following commands are available - they all will run in pure ruby, without forking out the the git binary. In fact, they can be run on a machine without git compiled on it.

Commands currently implemented:

  • add
  • commit
  • log
  • log-shas
  • cat-file (treeish)
  • rev-parse (treeish)
  • branches
  • ls-tree (tree)

Examples

Here are some of examples of how to use the Git-Ruby package.

First you have to remember to require rubygems if it's not. Then include the 'git-ruby' gem.

require 'rubygems'
require 'git-ruby'

g = GitRuby.open('my_project')  # has a .git subdir

g.add('file')
g.commit('commit message')

g.log.each do |commit|
  puts commit.sha
  puts commit.message
  puts commit.author.email

  commit.gtree.children.each do |name, obj|
    if obj.tree?
      puts ['tree: ' name, obj.sha].join("\t")
    end

    if obj.blob?
      puts ['blob: ' name, obj.sha].join("\t")
    end
  end
end