[Email protected]$ git checkout-b hongchangfirst origin/hongchangfirst
Appear:
fatal:cannot update paths and switch to branch ' Hongchangfirst ' at the same time.
Did you intend to checkout ' hongchangfirst ' which can isn't be resolved as commit?
Then we execute the command:
Git branch-a
There are no remote Hongchangfirst branches inside.
Remote Warehouse obviously has Hongchangfirst branch, but why tell not?
It turns out that this command does not update the warehouse information from a remote repository every time, and this is done for efficiency, and we can update it manually:
Git fetch origin
And then we're in Git branch-a
We all found the remote branch, and then we're doing a new branch:
git checkout-b hongchangfirst Origin/hongchangfirst
It's okay.
Original: http://blog.csdn.net/hongchangfirst/article/details/45312139
Author: Hongchangfirst
Hongchangfirst's homepage: http://blog.csdn.net/hongchangfirst
Three minutes to teach you to learn Git (ix)-New branch error