{% extends "base.html" %}{% block title %}Gałęzie – {{ repo_name }}{% endblock %} {% block content %}

Gałęzie: {{ repo_name }}

← Powrót
{% for b in branches %}
{{ '⭐' if b.name == default_branch else '' }}{{ b.name }}{% if b.name == default_branch %}domyślna{% endif %}{% if b.is_remote %}remote{% endif %} {% if session.get('is_admin') and b.name!= default_branch and not b.is_remote %}
{% endif %}
{% endfor %}
git clone -b NAZWA https://git.paganlinux.eu/{{ repo_name }}.git
⭐ = domyślna (HEAD). Gałąź domyślna jest używana przy git clone bez -b oraz przy tworzeniu release'ów.
{% endblock %}