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.

In BitBucket if I try and create a repository into an existing folder I get an error complaining that it is not an empty directory. If I go into an empty folder it complains that it is an empty folder.

What are the steps involved in adding an existing project already in development to a repo using Git and BitBucket?

The quick-start steps are obviously not quite right on the BitBucket page:

$ git clone git@bitbucket.org:myname/myproject.git
...
$ git pull                  # to fetch changes
$ git push -u origin master # to push changes for the first time
share|improve this question

1 Answer

up vote 2 down vote accepted

Instead of cloning, you have to:

git init .   # in your project repo
git remote add origin git@bitbucket.org:myname/myproject.git
git push -u origin master  # assuming it is a newly created repo on BitBucket
share|improve this answer

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.