Projects / snek / src / snek / templates / repository_empty.html
git clone https://molodetz.nl/retoor/snek.git
Raw source file available here .
{% extends "app.html" %}
{% block header_text %}{{ username }}/{{ repo_name }}{% endblock %}
{% block sidebar %}{% endblock %}
{% block main %}
<div class="container">
<h2>Repository is Empty</h2>
<p>This repository has been created but contains no branches or commits yet.</p>
<h2>Quick Start</h2>
<p>Create a new repository on the command line:</p>
<pre>git init
git add README.md
git commit -m "Initial commit"
git remote add origin {{ clone_url }}
git push -u origin main</pre>
<p>Push an existing repository:</p>
<pre>git remote add origin {{ clone_url }}
git push -u origin main</pre>
<p><a href="/settings/repositories/index.html">← Back to Repositories</a></p>
</div>
{% endblock %}