gh-profile

command module
v1.3.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 15, 2023 License: MIT Imports: 4 Imported by: 0

README

gh-profile

Build Go Report Card

Work with multiple GitHub accounts using the gh cli.

gh-profile demo

Installation

gh extension install gabe565/gh-profile

Usage

See the generated usage docs, or see a summary of each subcommand below.

Note As of v2.26.0, the gh cli now uses secure auth tokens by default. Secure auth tokens are not yet supported by gh-profile, so when logging into GitHub, make sure to run gh auth login --insecure-storage.

gh profile create [NAME]

Creates a new profile.

Params
  • NAME is optional. If not set, command will run interactively.
gh profile switch [NAME] [--local-dir]

Activates a profile.

Params
  • NAME is optional. If not set, command will run interactively.
    • If set to -, gh-profile will switch back to the previous profile.
  • --local-dir/-l activates the profile only for the current directory.
    • For this to work, you must install a per-directory env tool like direnv.
gh profile rename [NAME] [NEW_NAME]

Renames a profile.

Params
  • NAME and NEW_NAME are optional. If not set, command will run interactively.
gh profile list

Lists all profiles. Active profile will be bold with a green check.

gh profile remove [NAME]

Removes a profile.

Params
  • NAME is optional. If not set, command will run interactively.
gh profile show

Prints the active profile name. If no profile is active, nothing will be printed. Useful as a prompt element.

Prompt Element

gh profile show is useful for displaying the current profile in your shell's prompt. This command will work for any prompt, but configuration with Powerlevel10k is provided below.

Powerlevel10k

Powerlevel10k ships with a custom formatter for git repositories. This formatter can be easily modified to show the current profile.

  1. Edit ~/.p10k.zsh.
  2. Find the my_git_formatter function
  3. Find the line local res
  4. Add the following below that line:
        local profile="$(gh profile show 2>/dev/null)"
        [[ -n "$profile" ]] && res+="$profile "
    

Now, the current profile will be shown when you are in a git repo!

Example
Before After
Before After

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
cmd
internal

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL