I created a project on mean stack (mean.io) using
mean init
This created a git repo which I want to push into my own private git repo on Bitbucket. I did:
git remote add origin git@bitbucket.org:my_login/reponame.git
git push -u origin --all
I'm getting the following error
! [remote rejected] master -> master (shallow update not allowed)
Any advice on how I can push my local repo into brand new remote repo on Bitbucket?