1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| $ git branch -a * master remotes/origin/HEAD -> origin/master remotes/origin/master
$ git checkout -b develop origin/develop fatal: Cannot update paths and switch to branch 'develop' at the same time. Did you intend to checkout 'origin/develop' which can not be resolved as commit?
$ git fetch From gitlab.adxmai.com:sdk/MaiAPP * [new branch] develop -> origin/develop
$ git branch -va * master c8a503b 修改关闭按钮为tv,开屏不自动消失 remotes/origin/HEAD -> origin/master remotes/origin/develop c8a503b 修改关闭按钮为tv,开屏不自动消失
|