I cloned the develop branch:

git clone --branch 1.1/develop --recursive git://github.com/fuel/fuel.git

but the files cloned do not show commits to the development branch like:

https://github.com/fuel/core/commit/8d964dd62e017c5e45e4827f0f0c7d1df26dd395

How can I get the latest commits to the development branch?

有帮助吗?

解决方案

The core submodule isn't up to date (it was at e11bd4d according to https://github.com/fuel/fuel/tree/1.1/develop/fuel). You could update the submodule by

cd <the-git-repo>/fuel/core
git checkout 1.1/develop
git pull origin
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top