It is the first time I am making a push request and I am following the BitBucket's tutorial here it is:
I followed all the steps here is the error:
error: src refspec master does not match any.
error: failed to push some refs to '<some url>'
Adding this line:
git commit -m "initial commit"
Before this line:
git push origin master
Solved the issue for me.
What do you get from `git branch` ?
If you get "fatal: Not a git repository (or any of the parent directories): .git", but this is supposed to be a git repository, then you need to follow the "new project" guide instead of the "existing project" guide.
If you get "fatal: Not a git repository (or any of the parent directories): .git", but this is a Mercurial repository, then you'll need to make sure you add the repo URL to the [paths] section in .hg/hgrc, and then `hg push --new-branch` to create the appropriate structure on Bitbucket.
If you get a list of branches, but none is named "master", then you'll either need to push a different branch (`git push -u origin staging`, for example) or create a master branch (`git checkout -b master`) and then try pushing again.
If you get something else, then we can keep discussing here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.