src refspec ~ does not match any

51.6k Views Asked by At

Hi I want to push something to specific remote branch

I make local areas by

git clone https://~~~.Something
cd https://~~~.Something

and I can access specific branch using

git checkout origin/[branch]

I want to commit something to my specific branch origin/[branch] But when I am trying to push something using by

git push origin [branch]

I got this error

error: src refspec [branch] does not match any.
error: failed to push some refs to 'https://github.com/kkammo/yonseitree.git'

I tried to solve this problem but I can't find any solution... so plz help me T.T

2

There are 2 best solutions below

4
On

A replicated question here, src refspec master does not match any when pushing commits in git

Try git show-ref to see what refs do you have. Is there refs/heads/[branch]?

You can try git push origin HEAD:[branch] as more local-reference-independent solution.

It works for me.

0
On

Below is your now branch:

* dev master remotes/origin/master

The new branch dev is created from master and have been done some commits.

Use the command below to push this new branch:

git push -u origin --tags HEAD:dev

After that, we check again:

* dev master remotes/origin/dev remotes/origin/master

That's OK for me.