1.1 KiB
1.1 KiB
Simple SVN Browser
Simple SVN Browser is a very simple Subversion repository browser implemented
with Python3/GTK3.
It was implemented to have a very basic GUI for browsing repositories from
Linux.
It works by wrapping the svn
command-line interface.
This made development much faster.
As a side-effect, you'll need to have your Subversion credentials cached for
any repository you browse.
Simple SVN Browser has no mechanism to accept credentials.
Installation
pip3 install --user git+git://github.com/holtrop/simple-svn-browser.git
Uninstallation
pip3 uninstall simplesvnbrowser
Usage
simple-svn-browser [working-copy-path-or-repository-url]
If invoked without any argument, the URL of the current working copy in the current directory (if present) will be used.
License
Simple SVN Browser is licensed under the zlib license.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request