When I try to push the development branch of my repository I get the error
error: src refspec development does not match any.
This is what I have done:
1 - cloned the repository
git clone [email protected]:solay-Apache/koica-inscriptions.git
2 - I created a new branch and I positioned myself in that branch:
git branch db
git checkout db
3 - I did a pull of the development branch of the remote repository
git pull origin development
4 - I made changes to the project code and made a commit
git add .
git commit -m "mensaje"
5 - I push the development branch of the remote repository
git push origin development
6 - when doing the push I get the error
error: src refspec development does not match any. error: fallo el push de algunas referencias
Additional information:
$ git show-ref
refs/heads/db
refs/heads/master
refs/remotes/origin/HEAD
refs/remotes/origin/development
refs/remotes/origin/master
$ git remote -v
origin [email protected]:solay-Apache/koica-inscriptions.git (fetch)
origin [email protected]:solay-Apache/koica-inscriptions.git (push)