* Can a git repository be initialized with a bundle?
@ 2008-02-13 8:21 Tom Koelman
2008-02-13 9:02 ` Santi Béjar
0 siblings, 1 reply; 2+ messages in thread
From: Tom Koelman @ 2008-02-13 8:21 UTC (permalink / raw)
To: git
Hi,
I got some repository from which I created a bundle like so:
$ git bundle create all.bundle --all
Now I want to recreate this repository somewhere else:
$ mkdir tmp ; cd tmp ; git init
Initialized empty Git repository in .git/
$ git fetch all.bundle
fatal: Couldn't find remote ref HEAD
It doesn't matter whether I try to fetch, pull, or add -f to the command
line, I always get this response.
Am I trying to accomplish something that can't be done or am I doing it
wrong?
I am running git version 1.5.4.1 under Linux.
Regards,
Tom Koelman
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Can a git repository be initialized with a bundle?
2008-02-13 8:21 Can a git repository be initialized with a bundle? Tom Koelman
@ 2008-02-13 9:02 ` Santi Béjar
0 siblings, 0 replies; 2+ messages in thread
From: Santi Béjar @ 2008-02-13 9:02 UTC (permalink / raw)
To: Tom Koelman; +Cc: git
On Feb 13, 2008 9:21 AM, Tom Koelman <tkoelman@xs4all.nl> wrote:
>
> Hi,
>
> I got some repository from which I created a bundle like so:
>
> $ git bundle create all.bundle --all
--all does not imply HEAD, so:
$ git bundle create all.bundle --all HEAD
> Now I want to recreate this repository somewhere else:
>
> $ mkdir tmp ; cd tmp ; git init
> Initialized empty Git repository in .git/
> $ git fetch all.bundle
> fatal: Couldn't find remote ref HEAD
you have to say explicitly the branches you want as:
$ git fetch all.bundle master:bundle/master
or with a remote:
$ git remote add bundle all.bundle
$ git fetch bundle
>
> It doesn't matter whether I try to fetch, pull, or add -f to the command
> line, I always get this response.
The same happens with a normal remote repository without a HEAD.
>
> Am I trying to accomplish something that can't be done or am I doing it
> wrong?
I sent a path to support bundles in clone, but it was late for 1.5.4
and at some point "git clone" will be converted to C (now it is a
script). For now you have to do the "git init ; git remote add -f
...", or similar.
Santi
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-02-13 9:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-13 8:21 Can a git repository be initialized with a bundle? Tom Koelman
2008-02-13 9:02 ` Santi Béjar
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).