🐻 Git user switcher for quickly switching between local git users
Install via Homebrew:
brew tap jamieweavis/gus
brew install gus
Print usage and package information:
$ gus
gus 1.0.0 (https://github.com/jamieweavis/gus)
🐻 Git user switcher for quickly switching between local git users
Usage: gus <command>
COMMANDS
<id> Switch to user with the provided ID
- Switch to the previous user
list, ls List users and their IDs
config Open `~/.config/gus.toml` in your $EDITOR
Switch to a user by their ID:
$ gus 0
Switched git user to: Johnny <[email protected]>
Switch to the previous user:
$ gus -
Switched git user to: John Doe <[email protected]>
List users configured in your gus config file:
$ gus ls
* 0: Johnny <[email protected]>
1: John Doe <[email protected]>
Edit your gus config file in your configured shell $EDITOR
(alternatively you can manually edit the file at ~/.config/gus.toml
, see the configuration section for more details):
$ gus edit
When you run gus
for the first time a ~/.config/gus.toml
file is created. This file is used by gus to store your git users and is prepopulated with a your current git user.
As this is a Rust project, the config file is in TOML format. The config file is structured as follows:
previous_user = 0
current_user = 0
[[users]]
name = "<your current git user name>"
email = "<your current git user email>"
Additional users can be added to the users array by using Array of Tables syntax:
previous_user = 1
current_user = 0
[[users]]
name = "Johnny"
email = "[email protected]"
[[users]]
name = "John Doe"
email = "[email protected]"
The previous_user
and current_user
fields are updated by gus when you switch users - you should not edit these fields manually.
Compile a release binary of gus:
cargo build --release
Run the release binary:
cargo run --release
Run gus in development mode:
cargo run
Install the binary to your local crates:
cargo install --path .
Uninstall the binary from your local crates:
cargo uninstall gus
I'm not a Rust engineer, this is just for fun!
- homebrew-gus - 🍺 Brew tap & formula for gus
This project is licensed under the MIT License - see the LICENSE file for details.