{% extends "base.html" %} {% block title_suffix %} — {{ repo.key }}{% endblock %} {% block container_style %} style="max-width: 860px;"{% endblock %} {% block content %}
in workspace {{ repo.workspace }}

{{ repo.key }}

{% if not repo.exists %} missing on disk {% else %} {% if repo.frozen %} frozen {% elif repo.dirty > 0 and repo.behind > 0 %} conflict {% elif repo.dirty > 0 %} {{ repo.dirty }} dirty {% else %} clean {% endif %} {% if repo.behind > 0 %}{{ repo.behind }} behind{% endif %} {% if repo.ahead > 0 %}{{ repo.ahead }} ahead{% endif %} {% endif %}

Metadata

Remote
{{ repo.remote_url or '—' }}
Local path
{{ repo.local_path }}
Branch
{{ repo.branch }}
{% if repo.commit and repo.commit.hash %}
Last commit
{{ repo.commit.hash }} · {{ repo.commit.date }} · "{{ repo.commit.message }}"
{% endif %}
Disk size
{{ repo.disk_size }}
Last pull
{{ repo.last_pulled }}

Tags

{% if repo.tags %}
{% for tag in repo.tags %}{{ tag }}{% endfor %}
{% endif %}
Comma-separated. Replaces the existing tag list. Workspace auto-tags merge back in on the next sync.

Freeze

Danger zone

Remove this repo from gitstow. Choose whether to also delete it from disk.

{% endblock %}