* Create Remote Repository from local
@ 2022-07-14 9:50 Antonio Cabañas Zurita
2022-07-14 10:11 ` Ævar Arnfjörð Bjarmason
0 siblings, 1 reply; 2+ messages in thread
From: Antonio Cabañas Zurita @ 2022-07-14 9:50 UTC (permalink / raw)
To: git
Hi,
I'm setting up a git server, but I've run into a little problem.
It is possible to generate a remote repository on the server from a
local repository, or for this it must be created on the remote
(server), regardless of whether it is by cloning or by remote add.
Assuming that I am in a newly created local repository I have tried:
Do a git remote add ssh://git@git/<location>
And I have not previously created a repository in location(on the
server side), it returns an error that it is not a known repository in
the destination.
I do not know if I explained well.
Thank you for your your time,
Cheers
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Create Remote Repository from local
2022-07-14 9:50 Create Remote Repository from local Antonio Cabañas Zurita
@ 2022-07-14 10:11 ` Ævar Arnfjörð Bjarmason
0 siblings, 0 replies; 2+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2022-07-14 10:11 UTC (permalink / raw)
To: Antonio Cabañas Zurita; +Cc: git
On Thu, Jul 14 2022, Antonio Cabañas Zurita wrote:
> Hi,
>
> I'm setting up a git server, but I've run into a little problem.
>
> It is possible to generate a remote repository on the server from a
> local repository, or for this it must be created on the remote
> (server), regardless of whether it is by cloning or by remote add.
>
> Assuming that I am in a newly created local repository I have tried:
>
> Do a git remote add ssh://git@git/<location>
>
> And I have not previously created a repository in location(on the
> server side), it returns an error that it is not a known repository in
> the destination.
The default local git client + server setup does not automatically
create repos on the remote, do you mean that you'd like to "git init"
locally, then just have a "git remote add" on your own server create it?
That *is* possible, and I've worked with a server seup like that, it
just used a git-shell(1) replacement to intercept the "git upload-pack"
command, i.e. you'll get a /path/to/repo.git" argument, which you can
just intercept and "git init" that repo on the server, then serve the
normal "git-upload-pack" on that newly created repo.
Using that method you can:
# locally
git init r &&
echo hi >r/file &&
git -C r add file &&
git -C r commit file &&
git -C r push <some server url> master:master
Or whatever, and have it work.
But I don't know (and didn't test) how that works with "git remote add",
i.e. if the remote addition will expect a remote branch in some sensble
state on the remote.
So I could see how you'd get into a chicken & egg problem there,
i.e. you'd want to find the remote state, but your repo hasn't been
created yet...
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-07-14 10:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-14 9:50 Create Remote Repository from local Antonio Cabañas Zurita
2022-07-14 10:11 ` Ævar Arnfjörð Bjarmason
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).