Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git Error code: No refs in common and none specified; doing nothing

I am following the rails tutorial and got stuck on chapter 1.4.3 Bitbucket. https://www.railstutorial.org/book/beginning#sec-bitbucket This is what I have written and the answer I get.

pellem@rails-tutorial:~/workspace/hello_app (master) $ git remote add origin [email protected]:pellemartenson/hello_app.git
fatal: remote origin already exists.

pellem@rails-tutorial:~/workspace/hello_app (master) $ git push -u origin --all                                                          
No refs in common and none specified; doing nothing.
Perhaps you should specify a branch such as 'master'.
fatal: The remote end hung up unexpectedly
Everything up-to-date

I found some similar questions and tried some of the suggestion. But It doesn't work for me or I don't understand the answer.

like image 486
Pelle Mårtenson Avatar asked Jan 29 '15 14:01

Pelle Mårtenson


3 Answers

If using bit bucket, it takes certain steps for granted and as such can give you lot of pain. But here is how I fixed this issue. In your root directory of your project

    git init
    git add .
    git commit -m "message"

Then follow the steps from the initial page of the repo

    git remote add origin https://[email protected]/xxx/xxx.git
    git push -u origin --all
    git push -u origin --tags

Hope I've helped someone!

like image 186
Sawo Cliff Avatar answered Nov 01 '22 09:11

Sawo Cliff


I think you forgot to commit. You have an empty local repository.

like image 45
Omar Khan Avatar answered Nov 01 '22 08:11

Omar Khan


this works:

git push -f -u origin master

like image 3
veekthorcodes Avatar answered Nov 01 '22 09:11

veekthorcodes