Metadata-Version: 1.1
Name: Github-url-converter
Version: 0.1.0
Summary: Quick and easy way to convert Github remote url's from HTTPSto SSH or vice versa
Home-page: https://github.com/aeonaxan/github-url-converter
Author: Ahmed Azaan
Author-email: azaan@outlook.com
License: MIT
Description: ##Github-url-converter
        Easily converts the remote URL in your repositories from HTTPS to SSH or vice-versa.
        Hopefully saves you a few seconds every once in a while :)
        
        ##Usage
        ```
        $ git remote -v
        origin	https://github.com/aeonaxan/demo (fetch)
        origin	https://github.com/aeonaxan/demo (push)
        
        $ git convert origin ssh
        Successfully changed origin URL to [git@github.com:aeonaxan/demo.git]
        
        $ git remote -v
        origin	git@github.com:aeonaxan/demo.git (fetch)
        origin	git@github.com:aeonaxan/demo.git (push)
        
        $ git convert origin https
        Successfully changed origin URL to [https://github.com/aeonaxan/demo]
        ```
        
        Note: Here convert is aliased to github-url-converter
        
        ##Installation
        You can easily install with pip
        ```
        pip install github-url-converter
        ````
        
        Now you can use a git alias for github-url-converter so you dont have to type the whole thing again.
        Github-url-converter will happily alias itself to `convert` for you
        
        ```
        $ github-url-converter install
        github-url-converter aliased to git convert
        ```
        
        Now you can use use it as `git convert` in any git repository.
        
        ###Licence
        MIT
        
        
Keywords: github convert url
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
