I have been trying to figure this one out but I am having a hard time doing so. I am currently working on an open source project that requires me to allow a user to push to remote repository without it already existing there. I want to avoid manually logging in to a server and running git init or git init --bare.

For obvious reasons, I get the following error when trying to push my local repository to a path that doesn't point to an existing repository on the remote server:

fatal: '/var/repositories/myrepo' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

But I would like to be able to run for example the following command:

git push origin master

And have that create /myrepo in /var/repositories if it does not yet exist. How would I be able to accomplish this? I would assume it is some kind of (global) git config setting you would probably set on the remote server, or otherwise a (repository specific) git config locally, but I couldn't figure it out.

Any help would be much appreciated!

Thanks!

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

1.) checkout & track the branch from the remote

git checkout -t origin\funbranch

2.) branch off of it

git checkout -b mybranch

3.) just push your new one up, it will create a new branch automatically on the remote.

git push origin mybranch

It should say "created new remote branch origin\mybranch"

If you are still getting Remote end Hung up, sounds like a security thing. Do you have SSH keys installed correctly, and do you have write permissions on the remote server?

The way most open source projects work-- You have to create a fork (a clone inherently) that you use to do your work because most of the time you don't have write permissions to the repo. When you have changes, you will then send a pull request to the repository owner, and he/she will pull from your fork the changes that they want.

link|improve this answer
Hi. Thanks for the reply! While this is a valid answer for probably most people viewing this question, it is not exactly the one I was looking for. I need to be able to push my local develop branch to for example a remote staging branch. But I do not wish to create a new branch just to accomplish the tracking and all. Do you know of any other way this might be accomplishable, without doing changes to my local repository? Sorry if the question is a bit unclear, what I'm trying to do is probably not very commonly done. :) – Michael van Rooijen Nov 5 '10 at 15:55
@Michael: Your comment here doesn't sound at all like your question. Here you're talking about pushing one local branch to a different remote branch (which may or may not exist). Your question, however, was about pushing to a remote where the repository doesn't yet exist, and must be created. – Jefromi Nov 5 '10 at 17:49
feedback

There is currently no way to use git push to create a repository on the remote. The best you can do is write a one-liner script something like this:

#!/bin/bash
ssh $1 "cd $2 && git init --bare" &&
git push ssh://$1/$2

Hopefully you can ssh in; if you can't, you could use some kind of filesystem access to just manually create the repo by dumping in the appropriate file/directory structure (maybe create it locally and copy). You might also create a named remote along the way.

This was actually one of the most requested features on the 2010 Git Survey - so maybe you'll get your wish sometime in the next year!

link|improve this answer
Thanks for the response, and sorry for my late response. What you said should indeed work. Yes I have the ability to SSH. I actually solved this problem using the PushAnd library on GitHub. I am not entirely sure why it works with this library installed, but it does! I believe it installs a post-push hook/script that runs some command to initialize a repository and such. – Michael van Rooijen Nov 19 '10 at 5:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.