Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 github 中创建了一个分支(不是 master 分支,称为second),并向其中添加了一些文件。现在我想将此分支克隆到我的本地电脑,但它克隆了主分支,并且在主分支中我没有那个特定的文件。
second
如何在我的电脑中只有第二个分支?
你可以做
git fetch REMOTE_NAME
REMOTE_NAME如果您不知道它的名称,那么您在哪里调用遥控器origin。一旦你完成了你应该做的
REMOTE_NAME
origin
git checkout second
因为现在分支在您的本地存储库中。