The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Repository setup is empty after command $ git push -u origin master

eiger3970
Contributor
July 12, 2014

Hello,

I needed a new repository urgently for a project I'm working on this weekend.

I logged in to my Bitbucket account > Create > Create repository > I'm starting from scratch > followed guide.

No files uploaded?

My Terminal gave some errors:

$ git push -u origin master
error: src refspec master does not match any.
error: failed to push some refs to 'https://bitBucketUserName@bitbucket.org/bitBucketUserName/RepositoryName.git'

Please help me use the repository.

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 13, 2014

Hello,

Thank you for your question.

Based on the error mentioned, it seems you are trying to push "nothing" to your repository. In order to make it work, first you need to add something to your local repository as per following:

# create a file
echo "hello world" > greeting.txt

# commit a file
git commit -m "add greeting"

# push to your repository
git push -u origin master

The important thing in here is that you *must* commit a file pior to push it into your repository.

Kind regards,
Rafael

TAGS
AUG Leaders

Atlassian Community Events