“Cannot update paths and switch to branch at the same time”

前端 未结 11 1679
广开言路
广开言路 2020-12-02 04:24

I sometimes use the checkout -b option to create a new branch, check it out at the same time and set up tracking in one command.

In a new environment, I

11条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 05:02

    For me I needed to add the remote:

    git remote -add myRemoteName('origin' in your case) remoteGitURL
    

    then I could fetch

    git fetch myRemoteName
    

提交回复
热议问题