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.
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!
I think you forgot to commit. You have an empty local repository.
this works:
git push -f -u origin master
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With