{% extends "repo_master.html" %}
{% block title %}{{ select.capitalize() }} - {{ repo.name }}{% endblock %}
{%block tag %}home{% endblock %}
{% block header %}
{% endblock %}
{% block repo %}
This repo is brand new! If you already have a git repo: If you have not created your git repo yet:
Note, you may want to checkout out the
SSH Hostkey/Fingerprint
information page
Admins
git remote add origin {{ config.get('GIT_URL_SSH') }}{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git
git push -u origin master
git clone {{ config.get('GIT_URL_SSH') }}{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git
cd {{ repo.name }}
touch README.rst
git add README.rst
git commit -m "Add README file"
git push -u origin master
Branches
{% for branch in branches %}
{% if page > 1%} < Previous {% else %} < Previous {% endif %} | {{ page }} / {{ total_page }} | {% if page < total_page %} Next > {% else %} Next > {% endif %} |
Git URLs | {% if authenticated and repo_admin %} more | | {% endif %}SSH Hostkey/Fingerprint | |
---|---|---|---|
Project | : | {{ config.get('GIT_URL_SSH') }}{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git | {{ config.get('GIT_URL_GIT') }}{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git |
Docs | : | {{ config.get('GIT_URL_SSH') }}docs/{{ repo.fullname }}.git | {{ config.get('GIT_URL_GIT') }}docs/{{ repo.fullname }}.git |
Tickets | : | {{ config.get('GIT_URL_SSH') }}tickets/{{ repo.fullname }}.git | {{ config.get('GIT_URL_GIT') }}tickets/{{ repo.fullname }}.git |
Requests | : | {{ config.get('GIT_URL_SSH') }}requests/{{ repo.fullname }}.git | {{ config.get('GIT_URL_GIT') }}requests/{{ repo.fullname }}.git |