我开始在GitLab上使用“阅读文档”。我用Sphinx建立了一个项目并将其连接起来。每次在RTD触发构建时,都会显示以下消息:
git clone --no-single-branch --depth 50 https://gitlab.com/ldesousa/docs-repo .
Cloning into '.'...
fatal: could not read Username for 'https://gitlab.com': terminal prompts disabled
在本地该项目进展良好。我还向项目的根目录添加了.readthedocs.yml
文件,但问题仍然存在。
答案 0 :(得分:0)
您可以按照“ Documentation using Sphinx and ReadTheDocs.org”中的说明尝试使用SSH URL:
git remote add origin git@github.com:<your git username>/my-first-docs.git
在您的Git clone命令中,尝试使用类似的SSH URL。