{% extends "man.html" %} {% block content %}
Your wiki has been created, but does not have any content. To add
content, push commits to the {{repo.ref}} branch of
{{wiki.owner.canonical_name}}/{{wiki.repo.name}}:
{{clone_url.url}}
git clone {{clone_url.url}} && cd {{repo.name}}
git checkout --orphan {{repo.ref}}
git rm -rf *
echo "Hello world!" >index.md
git add index.md
git commit -m"Initial wiki commit"
git push -u origin {{repo.ref}}
{% else %}
git clone {{clone_url.url}} && cd {{repo.name}}
echo "Hello world!" >index.md
git add index.md
git commit -m"Initial wiki commit"
git push -u origin {{repo.ref}}
{% endif %}