Metadata-Version: 2.1
Name: git-ssh-key
Version: 0.1.1-a0
Summary: UNKNOWN
License: MIT
Author-email: alingse <alingse@foxmail.com>
Requires-Python: >=3.8
Project-URL: homepage, https://github.com/alingse/git-ssh-key
Description-Content-Type: text/markdown
Description: # git-ssh-keys-keeper
        manager multi git ssh keys in one machine, with serval private or public repo.
        
        ```bash
        pip install git-ssh-key
        ```
        
        change git url
        
        ```bash
        $git-ssh-key https://github.com/alingse/git-ssh-key.git
        New repo address: git@github.com-f5851eb:alingse/git-ssh-key.git
        New repo public rsa key: /Users/alingse/.ssh/github.com-f5851eb.id_rsa.pub
        ```
        
        ## Dev
        
        ```bash
        pdm install
        
        pdm build
        ```
        
        ### publish
        
        add once
        
        ```bash
        pdm config publish.username xxx
        pdm config publish.password yyy
        ```
        
        ```bash
        pdm publish
        ```
        
        ## TODO
        
        1. show public key ?
        2. better -c -k ?
        3. more error checking raise click.ClickException
        4. replace os.system
        5. add more test ?
        6. support duplicate keys ?
        7. better giturlparse

