Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to create a new repository in bitbucket by using command line git? I have tried the following:

git clone --bare https://username@bitbucket.org/username/new_project.git

I get this message:

Cloning into bare repository 'new_project.git'...
fatal: https://username@bitbucket.org/username/new_project.git/info/refs not found: did you run git update-server-info on the server?

It would be nice to do this without going to the web app.

share|improve this question

2 Answers

up vote 4 down vote accepted

You can use RESTful BitBucket API and cURL for example:

curl --user login:pass https://api.bitbucket.org/1.0/repositories/ --data name=REPO_NAME

to create new repository named REPO_NAME

See api for more information.

share|improve this answer
1  
Thanks, simple easy solution. Worth noting above creates a public repo. Just add --data is_private='true' for a private repo – Patrick Dec 9 '12 at 15:40

git clone --bare doesn't create a new repo on BitBucket.
It copies an existing BitBucket one on your local computer.

If it is possible at all, it would use the BitBucket API.
As illustrated by this BitBucket API wrapper project, mkproject isn't available yet.

share|improve this answer
Forking a repo (clone on BitBucket side) doesn't seem to be supporting either yet: bitbucket.org/site/master/issue/2380/… – VonC Dec 9 '12 at 15:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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