{% extends "repo_master.html" %} {% block title %}{{ select.capitalize() }} - {{ repo.namespace + '/' if repo.namespace }}{{ repo.name }}{% endblock %} {% set tag = "home" %} {% block header %} {% endblock %} {% block repo %} {% if authenticated and g.repo_committer and not repo.is_fork and not repo.settings.get('pull_requests', True) and not readme %}
You appear to have turned off pull-request you may want to add a README file with instructions on how to contribute to this project. Thanks!
This repo is brand new!
{% if authenticated and g.repo_committer %}If you already have a git repo:
git remote add origin {{ config.get('GIT_URL_SSH') }}{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git git push -u origin master
If you have not created your git repo yet:
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{% else %}
The Project Creator has not pushed any code yet
{% endif %}