submodule-https-schemeΒΆ

Use a https:// URL for a submodule.

This build will work in both, Community and Corporate site.


.gitmodules file:

1
2
3
4
5
6
[submodule "template"]
	path = template
	url = https://github.com/rtfd/template.git
[submodule "notemplate"]
	path = notemplate
	url = https://github.com/rtfd/template.git

Sphinx configuration file to build this docs (see full file),

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# -*- coding: utf-8 -*-

# Default settings
project = 'Test Builds'
extensions = [
    'sphinx_autorun',
]

# Include all your settings here
html_theme = 'sphinx_rtd_theme'





>>> # Build at
>>> import datetime
>>> datetime.datetime.utcnow()  # UTC
datetime.datetime(2022, 2, 8, 17, 44, 47, 574959)