{% extends "layout.html" %} {% block title %}Repository Details{% endblock %} {% block content %}

{{ repo.repository_name }}

To clone this repository, use this command:

git clone git@{{ hostname }}:{{ repo.repository_name }}

If this is a brand new repository and you want to push an existing git repository up to it, use these commands:

git remote add origin git@{{ hostname }}:{{ repo.repository_name }}
git push --set-upstream origin master

Access Control Levels (ACLs)

{% for repo_acl in repo_acls %} {% if repo_acl.can_read %} {% else %} {% endif %} {% if repo_acl.can_write %} {% else %} {% endif %} {% if repo_acl.can_rewind %} {% else %} {% endif %} {% if repo_acl.can_create_tag %} {% else %} {% endif %} {% if repo_acl.can_modify_tag %} {% else %} {% endif %} {% endfor %}
User Read Write Rewrite History Create Tags Modify Tags
{{ repo_acl.user_name }}alloweddeniedalloweddeniedalloweddeniedalloweddeniedalloweddenied
{% if user_acls.is_owner %}

Administration

You are an owner of this repository and can modify it (and its ACLs). Click here to edit the repository.

{% endif %} {% endblock %}