我在本地創建了新分支test並提交到github上
錯誤信息如下:
error: src refspec test does not match any.
error: failed to push some refs to 'https://github.com/itbsl/admin.git'
錯誤的原因是遠程並沒有test分支,我們需要將在本地創建分支的信息推送到github上
git push origin HEAD -u
可以到github看一下