我无法从Doctrine Document生成HTML文档。
问题是生成文档时,最后生成的HTML始终是2.4版,但是我想要2.6.2版(当前稳定版)。
我所做的事情:
我遵循了GitHub规范(https://github.com/doctrine/orm/tree/v2.6.2/docs)的说明来生成文档。
首先,我使用以下命令检出git标签版本2.6.2:
git clone https://github.com/doctrine/orm
cd orm
git tag -l` ( show list of tags )
git checkout tags/v2.6.2
然后运行:./bin/install-dependencies.sh
运行:./bin/generate-docs.sh
另外,使用git submodule init
和git submodule update
命令进行主题发布,最后的结果是build
HTML文件夹。
但是此文件夹包含doc版本2.4。怎么了?