Metadata-Version: 1.1
Name: SVN-Ignore
Version: 1.0.4
Summary: An utility that provides .svnignore functionality similar to GIT
Home-page: https://github.com/Sidesplitter/SVN-Ignore
Author: Jord Nijhuis
Author-email: jord@nijhuis.me
License: MIT
Description: # SVN-Ignore
        An utility that provides .svnignore functionality similar to GIT. 
        
        The svn:ignore property can only read one ignore file, and won't read any files in subdirectories. 
        It also only works for files that exist at the moment of change. SVN-Ignore is a library that changes both of these things.
        
        ## Installation
        
        Make sure that you have SVN installed before you run SVN-Ignore, as it requires the `svn` command. 
        
        To install SVN-Ignore, simply run: `pip install svn-ingore`. After that you can run `svn-ignore` on any directory
        
        ## Usage
        
        Simply calling `svn-ignore [directory]` will run the utility. If the directory is left empty, 
        it will use the working directory.
        
        Valid arguments:
        
          - `--no-recursive`: Do not apply the .svnignore file to any of the children of the current directory
          - `--overwrite`: Overwrite existing svn:ignore properties, This automatically applies	`--no-recursive` as well.
          - `--ignore-file <file>`: The file to look for. Default is `.svnigore`
          - `--verbose`: Display verbose information
          - `--help`: Display this information
          
        ## Hook
        
        Because of the way that the `svn:ignore` property works, this script only applies the contents of `.svnigore` to
        files that exist at the time of running. To make sure that the file also applies to newly added files, the command needs
        to be rerun. An easy way to do this is with a hook.
        
        ### On the Client
        
        #### Linux (Bash alias)
            
        The correct way to do this is by using a Bash alias. Create a file somewhere with these contents:
        ```
        #!/bin/bash
        if [ $1 = 'commit' ]; then
            svn-ignore
        fi
        
        /usr/bin/svn $@
        
        if [ $1 = 'add' ]; then
            svn-ignore
        fi
        ```
        Make sure to call `chmod +x FILENAME` afterwards. After that you just need to add the following line to `~/.bashrc`:
        `alias svn="/path/to/this/file $@"`. This hook is both for pre-commit and post-add (A hook you normally won't find).
        
        #### Windows (TortoiseSVN)
        
        [TortoiseSVN offers a simple way to add pre-commit hooks client side.](https://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-settings.html#tsvn-dug-settings-hooks)
        Simply add `svn-ignore` as a Pre-Commit Hook in Tortoise-SVN.
        
        ### On the Repository
        
        This is currently not possible and is planned in a future version
        
        ## License
        
        MIT License
        
        Copyright (c) 2016 Jord Nijhuis
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Keywords: svn cli util utils
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Version Control
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3.5
