我有一些 Xcode 项目正在尝试使用 git 从 GitHub 克隆,它也有外部子模块。每当我尝试克隆时,它都会将这些外部子模块以及项目中的每个文件夹放在“(无分支)”而不是 master 上。这就是我在终端中所做的:
git clone git@github.com:******.git
cd ******
git submodule update --init
cd External/******
git submodule update --init
cd External/******
git submodule update --init
如果我 cd 进入任何文件夹并执行 git 分支,我会得到:
git branch
* (no branch)
master
有没有办法强制 git clone 在任何地方使用 master 分支?