if you would like to checkout the branch groups, you can simply say this in recent versions of Git:
git fetch origin
git checkout groups
This will automatically track origin/groups from a local branch groups.
In older Git versions you need to say this:
git fetch origin
git checkout --track origin/groups
本文介绍如何使用Git在不同版本的Git中切换到特定的远程分支groups。在较新版本的Git中,可以通过简单的命令实现自动追踪,而在旧版本中则需要更详细的指令。
903

被折叠的 条评论
为什么被折叠?



