{% extends "base.html" %} {% block title_suffix %} — Workspaces{% endblock %} {% block content %}
Organization

Your workspaces.

{% if workspaces %}{{ workspaces|length }} {{ 'directory' if workspaces|length == 1 else 'directories' }} where gitstow organizes repos.{% else %}No workspaces configured yet.{% endif %} Each has a layout — structured or flat — and optional auto-tags applied to every repo it contains.

{% if error %}
Problem

{{ error }}

{% endif %} {% if notice %}
Done

{{ notice }}

{% endif %} {% if workspaces %}
{% for ws in workspaces %} {% endfor %}
Label Path Layout Auto-tags Repos Actions
{{ ws.label }} {{ ws.path }} {{ ws.layout }} {% for t in ws.auto_tags %}{{ t }}{% else %}{% endfor %} {{ ws.count }}
scan discovers new repos in the workspace and catalogs them. remove unregisters the workspace from gitstow but leaves files untouched on disk. {% endif %}

Add a workspace

{% endblock %}