cgu

Crates.io Crates.io CI

Manage multiple git configurations

Inspired by Git-User-Switch.

Installation

```bash

this will install the executable cgu

cargo install change-git-user ```

Features

Usage

Prompts

```bash

This will spawn prompts to guide you through managing user configurations

cgu ```

CLI

If you don't want use use prompts, you can use subcommands instead. The subcommands are:

Examples

```bash

view CLI options

cgu --help

view subcommand help

cgu --help

Add a config with the name "My Config"

Defaults to the user.name value ("My Name" in this example) if --name is not passed

cgu add --name "My Config" "My Name" example@email.com

View all configs

cgu view --all

Select the new config

cgu select "My Config"

Delete the new config

cgu delete "My Config" ```