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
- Host: GitHub
- URL: https://github.com/coskundeniz/svn-helper
- Owner: coskundeniz
- License: gpl-3.0
- Created: 2017-04-01T12:31:17.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-14T12:30:26.000Z (over 6 years ago)
- Last Synced: 2025-02-28T19:17:45.606Z (about 2 months ago)
- Topics: subversion, svn-command, svn-helper
- Language: Python
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 fileThis can be shortened with aliases defined in bashrc file like
```bash
alias sd="python3 svn_helper.py -d"
```