{% extends 'allura:templates/repo/repo_master.html' %} {% block title %} {% if c.app.repo %} Git Repository: {{c.app.repo.name}} {% else %} Git Repository {% endif %} {% endblock %} {% block header %}{{c.app.config.options.mount_label}}{% endblock %} {% block content %} {{ clone_info(c.app.repo) }} {% if log %}

Recent Commits{% if branch %} on {{branch}}{% endif %}

{{c.log_widget.display(value=log, show_paging=False, limit=limit, page=page, count=count)}} {% if int(count) > int(limit) %} More {% endif %} {% else %} {% if h.has_access(c.app, 'write')() %}

New to Git?

Learn the basics.
Empty Repository
It looks like this Git repository doesn't have any files in it. Let's commit your project code now.

First time using Git

cd {{c.app.repo.suggested_clone_dest_path()}}
git init
git commit -a -m 'Initial commit'
git remote add origin {{c.app.repo.clone_url('rw', c.user.username)}}
git push origin master

Existing Repository

cd {{c.app.repo.suggested_clone_dest_path()}}
git remote add origin {{c.app.repo.clone_url('rw', c.user.username)}}
git push origin master
 
Did you get asked for your SourceForge password during this process? You can securely use your Git repository and avoid having to re-enter your password by setting up an ssh-key.
{% else %}

No (more) commits

{% endif %} {% endif %} {% endblock %}