Setting up a Git remote with a truncated history

Posted by drg on Stack Overflow See other posts from Stack Overflow or by drg
Published on 2010-04-19T23:41:08Z Indexed on 2010/04/19 23:43 UTC
Read the original article Hit count: 248

Filed under:

I am in the midst of doing some non-standard, probably doomed, experiments on a git repository. The goal is to create a remote repository with a truncated history which can still share commits with an internal repository which has a full history.

I've had some success using a graft to connect the public history with the private history - when I push from my internal repository, only the post-graft contents are included.

So my main question is: what is the simplest way of taking a commit, eliminating its parent and writing a graft in place of the parent?

A more general question: is what I'm trying to do going to cause me pain in the long run, do you know if there's a better way?

© Stack Overflow or respective owner

Related posts about git