From: Andreas Ericsson <ae@op5.se>
To: Christian MICHON <christian.michon@gmail.com>
Cc: Git Mailing List <git@vger.kernel.org>
Subject: Re: More help needed on merging unrelated repos
Date: Tue, 04 Nov 2008 21:12:58 +0100 [thread overview]
Message-ID: <4910ACCA.7080007@op5.se> (raw)
In-Reply-To: <46d6db660811040514qc6c9663u17bd231e1ba662ad@mail.gmail.com>
Christian MICHON wrote:
> Hi,
>
> I previously posted here a question on how to merge unrelated repos,
> and I was quite happy with the answer.
> git pull repo_name repo_branch
>
> Yet, when I merge these repos (they're unrelated), I'd like to merge
> all of them at once.
>
> How do I pull for example 2 repos in 1 command ? I cannot figure out
> the exact syntax to use.
>
> I tried:
> git pull ../i1 0.5 ../i2 master
> git pull ../i1 0.5 -- ../i2 master
>
> I also tried to play with --no-commit and -s to no avail.
>
> Does anyone of you already use this and knows the trick ? Thanks in advance!
>
You can only pull from a single repository at a time. The first way of doing
what you want that comes to mind is:
git remote add lib1 lib1url
git remote add lib2 lib2url
git fetch lib1 && git fetch lib2 && git merge lib1/master lib2/master
--
Andreas Ericsson andreas.ericsson@op5.se
OP5 AB www.op5.se
Tel: +46 8-230225 Fax: +46 8-230231
next prev parent reply other threads:[~2008-11-04 20:15 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-04 13:14 More help needed on merging unrelated repos Christian MICHON
2008-11-04 20:12 ` Andreas Ericsson [this message]
2008-11-04 21:08 ` Christian MICHON
2008-11-04 22:04 ` Andreas Ericsson
2008-11-04 22:30 ` Christian MICHON
2008-11-06 8:37 ` Karl Hasselström
2008-11-06 12:13 ` Christian MICHON
2008-11-06 15:28 ` Karl Hasselström
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4910ACCA.7080007@op5.se \
--to=ae@op5.se \
--cc=christian.michon@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.