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

Recent Commits

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

New to Subversion?

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

Import project to Subversion

cd existing-{{c.app.repo.suggested_clone_dest_path()}}
svn import {{c.app.repo.clone_url('rw', c.user.username)}} -m "Initial commit"

Check out a working directory

{{c.app.repo.clone_command('rw')}}
 
Did you get asked for your SourceForge password during this process? You can securely use your Subversion repository and avoid having to re-enter your password by setting up an ssh-key.
{% else %}

No (more) commits

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