* patches between different repositories
@ 2010-05-03 17:47 Matthias Lehmann
2010-05-03 18:04 ` Dmitrijs Ledkovs
0 siblings, 1 reply; 2+ messages in thread
From: Matthias Lehmann @ 2010-05-03 17:47 UTC (permalink / raw)
To: git
Hi all,
I have to apply patches from one repository to another repository, which
have a different layout (I am working on splitting one big repository into
several smaller ones, while development still continues on the big
repository).
So I did
big-repo$ git format-patche -o /tmp/foo @{some-date} -- subdir
small-repo$ git apply -p2 --directory=some/path --check /tmp/foo/*
and get
fatal: git diff header lacks filename information when removing 2 leading
pathname components (line 37)
the patch looks like this:
35| diff --git a/xyz/bar.jpg b/xyz/bar.jpg
36| new file mode 100644
37| index 0000000000000000000000000000000000000000..
3dcce2e1f68586ed2089d86b1bf4e7e41c818d97
38| GIT binary patch
39| literal 8791
It seems, like the -p options to git-apply can't handle new files.
Am I doing something wrong here? Or is there another way to merge changes
within different repositories with differnt layouts?
Any help would be greatly appreciated.
Best regards,
Matthias
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: patches between different repositories
2010-05-03 17:47 patches between different repositories Matthias Lehmann
@ 2010-05-03 18:04 ` Dmitrijs Ledkovs
0 siblings, 0 replies; 2+ messages in thread
From: Dmitrijs Ledkovs @ 2010-05-03 18:04 UTC (permalink / raw)
To: Matthias Lehmann; +Cc: git
On 3 May 2010 18:47, Matthias Lehmann <mat@matlehmann.de> wrote:
> Am I doing something wrong here? Or is there another way to merge changes
> within different repositories with differnt layouts?
>
> Any help would be greatly appreciated.
Try sub-tree merge after the initial setup you will get another
repository as a subdirectory after that you can commit moving files
around to match different layout. After that you can just pull & merge
and everything will just work =)
Read $ git help merge
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-05-03 18:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-03 17:47 patches between different repositories Matthias Lehmann
2010-05-03 18:04 ` Dmitrijs Ledkovs
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).