An open API service indexing awesome lists of open source software.

https://github.com/coskundeniz/svn-helper

Command line helper for commonly used svn commands
https://github.com/coskundeniz/svn-helper

subversion svn-command svn-helper

Last synced: about 2 months ago
JSON representation

Command line helper for commonly used svn commands

Awesome Lists containing this project

README

        

svn-helper
============

Command line helper for commonly used svn commands.

Information
-----------

This script simplifies the commonly used svn commands. Basically it indexes the output, and user selects from these indexes to run specified command on them.

Usage
-----
Go to the working copy and run as following

```python
python3 svn_helper.py [option]
```

Available options
* **s**: svn status
* **d**: svn diff
* **dr**: revision diff
* **c**: svn commit
* **l**: svn log
* **dl**: directory log
* **a**: svn add
* **b**: svn blame
* **bc**: backup changed files/folders
* **cp**: create patch file
* **ap**: apply patch file

This can be shortened with aliases defined in bashrc file like

```bash
alias sd="python3 svn_helper.py -d"
```