- Status: experimental
- Author: John Sumsion
- Inspiration: Git, Tim Shadel
GEDCOM plugin for Git. As a git
subcommand, git-ged lets you import and
manage GEDCOM files in a versioned, shareable way in a Git repository.
It is also possible to attach to other repositories and fetch related genealogy data from others who have imported it into their own repository.
As a library, git-ged lets you write programs that communicate genealogical data in the git-ged repository layout.
As a repository implementation, git-ged also defines a repository specification that, if adhered to by alternate implementations will allow all implementations to share repositories with each other.
Options for data format that I can see:
The initial goal is to be able to easily ingest GEDCOMs from the wild.
Support for versioned media importing is not included in the first pass, although with projects like git-annex a sharable media repository is potentially possible.
NOTE: Although I started git-ged and have worked on it while being employed by FamilySearch, this project is not endorsed and is not supported in any way by FamilySearch. I work on it outside of work hours, and do not use internal FamilySearch servers or data privileges. It is a personal endeavor to enrich the genealogy data sharing ecosystem.
- git (http://git-scm.com) tested with 1.7.12.3
- grit gem (https://github.com/mojombo/grit) tested with 2.5.0
Easiest install is via RubyGems:
$ gem install git-ged
Git-ged's Git repo is available on GitHub, which can be browsed at:
https://github.com/jsumsiong/git-ged
and cloned with:
git clone https://github.com/jsumsiong/git-ged.git
You will need these gems to get tests to pass:
- mocha
If you'd like to hack on git-ged, follow these instructions. To get all of the dependencies, install the gem first.
- Fork the project to your own account
- Clone down your fork
- Create a thoughtfully named topic branch to contain your change
- Hack away
- Add tests and make sure everything still passes by running
rake
- If you are adding new functionality, document it in README.md
- Do not change the version number, I will do that on my end
- If necessary, rebase your commits into logical chunks, without errors
- Push the branch up to GitHub
- Send a pull request for your branch
TODO
Copyright (c) 2011 John Sumsion. See LICENSE for details.
Portions Copyright (c) 2010 Tom Preston-Warner. See LICENSE.grit for details. Thanks to the github folks for the inspiring Grit gem.