I have two completely different git repositories, A and B.
I want to move a file from repo A to B without losing the files history.
That is, I want the commit message and all other info from
each commit where the file was included to generate new
commits in repo B.
(Yes, I know git manages content, not files. :-)
In other words, export a bunch of commits, filtering out the
patches for the file and import these in another repo.
Sort of importing from cvs to git, only the source and destination
are both git repositories.
I tried tailor from git to git, but that was probably not what tailor
wanted to do. :-)
Is this somehow possible?
Heya,
On Thu, Jun 11, 2009 at 15:20, JörgenHägg[off-list ref] wrote:
Is this somehow possible?
Try git filter-branch to get just the commits you want and nudge them
to contain what you want (do this in a seperate branch/copy of
repository A). When you're done, pull the branch into B and merge it.
Instant win?
--
Cheers,
Sverre Rabbelier
On Thu, Jun 11, 2009 at 2:29 PM, Sverre Rabbelier[off-list ref] wrote:
On Thu, Jun 11, 2009 at 15:20, JörgenHägg[off-list ref] wrote:
quoted
Is this somehow possible?
Try git filter-branch to get just the commits you want and nudge them
to contain what you want (do this in a seperate branch/copy of
repository A). When you're done, pull the branch into B and merge it.
Instant win?
You could also consider 'git subtree'
(http://github.com/apenwarr/git-subtree) to merge the other tree
(including its history) in as a subdirectory.
Avery