{#- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -#} {% extends 'allura:templates/repo/repo_master.html' %} {% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %} {% block head %} {% 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 %} {% elif is_empty %} {% 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.

Create default directories

It's common practice among Subversion users to create a /trunk, /branches, and /tags directory at the root of each repository. If you'd like to do that, follow these instructions:

{{c.app.repo.clone_command_first(anon=False, username=c.user.username)}}
cd {{c.app.repo.suggested_clone_dest_path()}}
mkdir trunk branches tags
svn add trunk branches tags
svn ci -m "Add initial directories"
      

To make the default checkout url for your repo point to your new /trunk directory instead of the root, click the icon above to unlock the project menu. Then click on icon of your SVN tool and on 'Checkout URL' in menu, add 'trunk' to the end of the url, and click 'Save.'

Import project on disk to Subversion

cd existing-{{c.app.repo.suggested_clone_dest_path()}}
svn import {{c.app.repo.clone_url_first(anon=False, username=c.user.username)}} -m "Initial commit"

Import remote repository to Subversion

Use the repository clone tool then check out a working copy once you receive a completion email.

 
{% if h.asbool(config.get('auth.allow_upload_ssh_key')) %} Did you get asked for your {{config.site_name}} password during this process? You can securely use your SVN repository and avoid having to re-enter your password by setting up an ssh-key. {% else %} Did you get asked for your {{config.site_name}} password during this process? You can securely use your SVN repository and avoid having to re-enter your password by asking your server admin to enable uploading ssh keys. {% endif %}
{% else %}

No (more) commits

{% endif %} {% elif c.app.repo.status == 'ready' %} {% if h.has_access(c.app, 'write') %}

Browsing this repo on the web is unavailable currently. To fix, please try a Repository Refresh. Committing and pulling code should still work.

{% else %}

No (more) commits

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