{% extends "_base.html" %} {% block title %}Git · {{ project.name | humanize }} · Urika{% endblock %} {% block heading %}Git{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %} {% if not initialised %}

Not initialised

Initialise this project as a git repo with a remote URL.

To create a new repo via the gh CLI, run urika github init {{ project.name }} --create in your terminal.

{% else %}
Branch
{{ status.branch or '—' }}
Remote
{{ status.remote_url or '—' }}
Uncommitted
{{ status.dirty_count }} file(s)
{% if status.last_commit_sha %}
Last commit
{{ status.last_commit_sha }} {{ status.last_commit_subject }}
{% endif %}
{% if recent %}

Recent commits

{% endif %} {% endif %} {% endblock %}