{% extends "app.html" %} {% block header_text %}{{ username }}/{{ repo_name }}{% endblock %} {% block sidebar %}{% endblock %} {% block main %}

Repository is Empty

This repository has been created but contains no branches or commits yet.

Quick Start

Create a new repository on the command line:

git init
git add README.md
git commit -m "Initial commit"
git remote add origin {{ clone_url }}
git push -u origin main

Push an existing repository:

git remote add origin {{ clone_url }}
git push -u origin main

← Back to Repositories

{% endblock %}