* Help merging two repo without connection
@ 2008-11-16 14:59 Luca Siciliano Viglieri
2008-11-16 15:06 ` Sverre Rabbelier
2008-11-16 15:33 ` Peter Harris
0 siblings, 2 replies; 3+ messages in thread
From: Luca Siciliano Viglieri @ 2008-11-16 14:59 UTC (permalink / raw)
To: git
Hi,
i'm trying to keep synched two repositories without always having a
direct connection.
My situation is the following:
I have a project on my computer with GIT repo.
Another developer visited me and cloned my repository connecting the
two computer (for example via SSH).
Than i sent him for the next days patched of my changes but when he
came and we merged i got the following tree:
/
-------------------------------------------(my patch)--(my second
patch)--\
/ \
-- (first commit) -- (second
commit
) (merge
) --
\ /
\ (my
patch)--(my second patch)--------------------------------------------/
I don't thinks its right to have double (or more?) commits. I would
have expected something like:
-- (first commit) -- (second commit) -- (my patch)--(my second
patch) -- (merge?) --
The patches were created with git-format-patch and merged with git-am.
I know that the commits have different sha1 but how can i keep with
patches or something similar the two repositories exactly synched?
Thanks
Luca Siciliano
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Help merging two repo without connection
2008-11-16 14:59 Help merging two repo without connection Luca Siciliano Viglieri
@ 2008-11-16 15:06 ` Sverre Rabbelier
2008-11-16 15:33 ` Peter Harris
1 sibling, 0 replies; 3+ messages in thread
From: Sverre Rabbelier @ 2008-11-16 15:06 UTC (permalink / raw)
To: Luca Siciliano Viglieri; +Cc: git
On Sun, Nov 16, 2008 at 15:59, Luca Siciliano Viglieri
<lsiciliano@web.de> wrote:
> Hi,
> i'm trying to keep synched two repositories without always having a direct
> connection.
> My situation is the following:
> I have a project on my computer with GIT repo.
> Another developer visited me and cloned my repository connecting the two
> computer (for example via SSH).
> Than i sent him for the next days patched of my changes but when he came and
> we merged i got the following tree:
I suspect 'git rebase' might help you out. When you apply the patches,
apply them to the branch they were based off (instead of to the most
recent master), and then rebase -that- branch (with your 'git am'-ed
patches from your other box) onto your most recent master. That way
you should be able to keep a linear history :).
--
Cheers,
Sverre Rabbelier
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Help merging two repo without connection
2008-11-16 14:59 Help merging two repo without connection Luca Siciliano Viglieri
2008-11-16 15:06 ` Sverre Rabbelier
@ 2008-11-16 15:33 ` Peter Harris
1 sibling, 0 replies; 3+ messages in thread
From: Peter Harris @ 2008-11-16 15:33 UTC (permalink / raw)
To: Luca Siciliano Viglieri; +Cc: git
On Sun, Nov 16, 2008 at 9:59 AM, Luca Siciliano Viglieri wrote:
> Hi,
> i'm trying to keep synched two repositories without always having a direct
> connection.
...
> I don't thinks its right to have double (or more?) commits. I would have
> expected something like:
>
>
> -- (first commit) -- (second commit) -- (my patch)--(my second patch) --
> (merge?) --
>
>
> The patches were created with git-format-patch and merged with git-am.
> I know that the commits have different sha1 but how can i keep with patches
> or something similar the two repositories exactly synched?
If you use "git bundle" instead of format-patch, you will have an
unreadable binary blob instead of a human-readable patch, but the
sha1s will not change (since the commiter information will be the
same). The remote side will "git pull" the bundle file instead of "git
am"ing it.
Peter Harris
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-11-16 15:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-16 14:59 Help merging two repo without connection Luca Siciliano Viglieri
2008-11-16 15:06 ` Sverre Rabbelier
2008-11-16 15:33 ` Peter Harris
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).