Metadata-Version: 1.1
Name: statkey
Version: 0.2
Summary: A simple script to make the commands 'git status'/'git diff' or 'hg status'/'hg diff' run with a one key command - the s key.
Home-page: UNKNOWN
Author: Colm O'Connor
Author-email: colm.oconnor.github@gmail.com
License: MIT
Description: StatKey
        =======
        
        Get the status of a git repo with a one key command:
        
        $ cd ~/mygitrepo
        $ s
            On branch master
            Your branch is up-to-date with 'origin/master'.
            
            nothing to commit, working directory clean
        
        Or a mercurial repo, and it will show a diff for either type of repo if it is < 80 lines:
        
        $ cd ~/mymercurialrepo
        $ s
             diff -r d511abd3422a bin/p
            --- a/bin/p	Thu Feb 19 21:25:35 2015 +0800
            +++ b/bin/p	Thu Feb 19 23:52:35 2015 +0800
            @@ -25,8 +25,8 @@
             fi
             
             
            -#if [ "$1" == "d" ]; then
            -#    cd $PROJECTDIR
            -#    bash
            -#fi
            +if [ "$1" == "d" ]; then
            +    cd $PROJECTDIR
            +    bash
            +fi
             
            ==========
            M bin/p
        
        
        Install
        =======
        
        First ensure you have python pip installed, then run:
        
        $ sudo pip install statkey
        
Keywords: development environment tool git svn hg mercurial
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
