{% extends "base.html" %} {% block title %}{% if signed_in %}{{ username }}{% else %}Repositories{% endif %} · tit{% endblock %} {% block content %}
{% if signed_in %}

{{ username }}

Open your account profile.

Your repositories

{% if repositories.is_empty() %}

You do not own a repository.

{% else %} {% endif %}
{% else %}

A small Git CDE

tit provides self-hosted Git repositories, issues, pull requests, and code review in one server.

{% endif %}

Recently updated public repositories

{% if recent_repositories.is_empty() %} {% if signed_in %}

No public repositories are available.

{% else %}

No repositories are available.

{% endif %} {% else %} {% endif %}
{% if !signed_in %}

Start with tit

  1. Create an account

    Create an account and add an SSH key.

  2. Create a repository

    Use the account page or the repo create SSH command.

  3. Collaborate

    Push branches, create issues, open pull requests, and follow updates with RSS.

{% endif %} {% endblock %}