Metadata-Version: 1.1
Name: fuggit
Version: 0.0.1
Summary: For managing that one annoying remote file you can't put under version control
Home-page: UNKNOWN
Author: James Polley
Author-email: jp@jamezpolley.com
License: Apache-2
Description: =================================================================
        fuggit: for when you just can't put that one annoying file in git
        =================================================================
        
        You know the feeling. You're making a quick dirty hack to a file on a
        remote machine that. The file isn't under version control. You want to
        have the convenience of editing the file locally, *and* you want the
        ability to roll back your changes. Putting the remote file under version
        control is just too hard, so what do you say? fuggit.
        
        Specifcally::
        
            fuggit add remote.hostname/etc/file.name
        
        this will grab /etc/file.name from the machine remote.hostname; save it
        as remote.hostname/etc/file.name under $PWD. The file will be added and
        committed to git.
        
        ::
        
            fuggit pull remote.hostname/etc/file.name
        
        can be used to refresh your local copy of the file. Any local changes
        will be preserved; any remote changes will result in a new commit.
        
        ::
        
            fuggit vimdiff remote.hostname/etc/file.name
        
        will open a vimdiff window showing your local copy of the file and the
        remote copy. Thanks to the magic of vim, any changes you make to the
        remote file will be pushed to the servce once you close the file.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
