Project

gip

0.0
No commit activity in last 3 years
No release in over 3 years
Gip into place: Piston without the SVN cruft
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

Runtime

>= 0
~> 0.11.0
 Project Readme

Gip into place: Piston without the SVN cruft¶ ↑

This is an implementation of Tom Dysinger’s dysinger.net/2008/04/29/replacing-braid-or-piston-for-git-with-40-lines-of-rake/ as a full command-line client. I’m standing on the shoulders of giants…

Gip is a thin layer above git-read-tree. If you want more information, you can look at assets.en.oreilly.com/1/event/24/Smacking%20Git%20Around%20-%20Advanced%20Git%20Tricks%20Presentation.pdf, pages 254-297.

Fair Warning¶ ↑

Since Gip copies the upstream repositories directly in your repository, please be advised that your repository will grow quickly. For each remote you add, you will receive all commits from that repository. That also means the full history for that project. And when I mean all, I do mean it. If you vendor Rails, you are forewarned: you will add nearly 20 MiB to your own repository. This is a trade-off between Piston (which only imports the latest HEAD) and having subtrees available for easily propagating changes upstream.

Usage¶ ↑

$ gip import git://github.com/mislav/will_paginate.git vendor/plugins/mislav-will_paginate

$ gip update vendor/plugins/mislav-will_paginate

Gip stores it’s metadata in a .gipinfo file.

Gip automatically commits whenever possible: after import, after update. If after an update a conflict occurs, the commit will be aborted and you are given the chance to resolve the conflicts. You have the full power of Git at your disposal.

Copyright © 2009 François Beausoleil. See LICENSE for details.