git checkout -b remotes/origin/develop
世界只因有你2017-05-02 09:52:04
Create a branch: $ git branch mybranch
Switch branches: $ git checkout mybranch
Create and switch branches: $ git checkout -b mybranch
曾经蜡笔没有小新2017-05-02 09:52:04
Create a local branch with write permissions for the remote branch remotes/origin/develop and track it. By the way, switch the working directory to this branch