Git push ionic master failing on windows

C:\Users\Appdojo\Ionic Apps\InAppTest> git push ionic master
error: src refspec master does not match any.
error: failed to push some refs to ‘git@git.ionicjs.com:toshendra/testinapp.git’

Can you please help

From git branch it appears that somehow your local branch name is “origin”.

You can rename the branch with -mv flag, like this:

git branch -mv origin master

After this git branch should show master :slight_smile:

Just to make sure the name is indeed the only thing that went astray, you can run git log and look at the last few commits - and compare them to the last few commits on bitbucket website.

This is sorted,My bad I needed to do the commit to the master and it all worked fine. Thanks for taking time to answer this. really appreciated