close
不知道大家用 git push remote branch 指令時有沒有遇過這個問題
error: src refspec feature/ZeWeiNote does not match any.
error: failed to push some refs to remote.
這兩個是一起出現的
原本以為是版本沒有控制好的關係
較常遇到的是 remote 版本比 local 還新,會導致 push 不上去
這種情況就要先 pull 再 push 才會成功
但我明明已經是最新的了,為何還為這樣?
後來發現了是其它原因
仔細看第一行 error ,此訊息已告訴我們沒有 match 的 refspec
這其實是名稱不一致的關係
Local name : ZeWeiNote
Remote name : feature/ZeWeiNote
沒錯,如果您的 branch 有分類的話,記得設定正確即可
利用指令 git branch -m 「new name」更改
文章標籤
全站熱搜
留言列表