An ID manager for git.
An Identity / Profile consists of name, email, and signingkey, and this command aims to manage them and help switch between them seamlessly.
$ pip install git-id
$ git id info
info
will retrieve identity from current repository and search a matching identity in the registry ($HOME/.git-id.yml
).
If no matching identity is found, then asks you if you want to register it.
$ git id ls
ls
will show all the identities in the registry.
$ git id use <profile_id>
use
will set the identity of the current repository to the identity <profile_id>
in the registry.
$ git id create
create
will create + register a new identity interactively/non-interactively.