{# vim: set et ts=8 sts=4 sw=4 ai ft=jinja.html: #} {% extends "settings.html" %} {% block content %} {##}

Repository Management

{##}
Enable this to allow users with the permission to READ to clone and pull the wiki content via git and users with UPLOAD/Attachment management permissions to push content. When enabled the URL {{url_for("dotgit", _external=True)}} will be displayed in the users settings.
{##}
Enable this to automatically push all changes to a remote git repository via SSH on every wiki content change.
{# push configuration parameters #}
{##}
Enable this to automatically pull changes from a remote git repository via SSH by triggering a webhook URL.
{# pull configuration parameters #}
{##}
{# action buttons #} {% if config.GIT_REMOTE_PUSH_ENABLED or config.GIT_REMOTE_PULL_ENABLED %}
{% if config.GIT_REMOTE_PUSH_ENABLED %} {% endif %} {% if config.GIT_REMOTE_PULL_ENABLED %} {% endif %}
{% endif %}
{# action results #} {% if git_action_result %}
{{ git_action_result.action|title }} Results
{{ git_action_result.output }}
{% endif %}
{% endblock %}