Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 1.54 KB

README.md

File metadata and controls

51 lines (30 loc) · 1.54 KB

Overview

Join the chat at https://gitter.im/bozaro/git-as-svn

Build Status

Subversion frontend server for git repository (in Java).

Python proof-of-concept implementation:

SVN protocol description

How to use

Run from binaries

For quick run you need:

  • Install Java 1.8 or later
  • Download binaries archive from: https://github.com/bozaro/git-as-svn/releases/latest
  • After unpacking archive you can run server executing:
    java -jar git-as-svn.jar --config config.example --show-config
  • Test connection:
    svn ls svn://localhost/example
    with login/password: test/test

As result:

  • Server creates bare repository with example commit in directory: example.git
  • The server will be available on svn://localhost/example/ url (login/password: test/test)

Build from sources

To build from sources you need install JDK 1.8 or later and run build script.

For Linux:

./gradlew deployZip

For Windows:

call gradlew.bat deployZip

When build completes you can run server executing:

java -jar build/deploy/git-as-svn.jar --config config.example --show-config