我在用該指令創建一個分支之後。 git branch new_featuregit checkout new_feature再用git checkout master指令他就無法切換到主分支。 報錯:error: pathspec 'master' did not match any file(s) known to git.請問這是怎麼回事?求指導。謝謝!
走同样的路,发现不同的人生
這個錯誤應該是沒有 master 這個分支,你可以透過
master
git branch
看一下目前有哪些分支或 git checkout -b master 切換回主分支。
git checkout -b master
這個錯誤應該是沒有
master
這個分支,你可以透過看一下目前有哪些分支
或
git checkout -b master
切換回主分支。