Last active
February 24, 2025 19:33
-
-
Save yermulnik/017837c01879ed3c7489cc7cf749ae47 to your computer and use it in GitHub Desktop.
GH CLI multi-account switch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git_protocol: ssh | |
aliases: | |
personal: '!cp ~/.config/gh/hosts.yml.personal ~/.config/gh/hosts.yml && gh auth status' | |
work: '!cp ~/.config/gh/hosts.yml.work ~/.config/gh/hosts.yml && gh auth status' |
So good!
Thanks!
This is true the love of my life
thank you T_T
Thank you very much. It works great. But I had to add gh auth setup-git
to the aliases to make git recognize switched profiles. So, my aliases inside ~/.config/gh/config.yml
looks like as below currently:
aliases:
co: pr checkout
personal: '!cp ~/.config/gh/hosts.personal.yml ~/.config/gh/hosts.yml && gh auth setup-git && gh auth status'
work: '!cp ~/.config/gh/hosts.work.yml ~/.config/gh/hosts.yml && gh auth setup-git && gh auth status'
This method works like a charm with direnv
.
Suppose you have
~/work
~/personal
Put .envrc
in each dir and write the same thing.
ex.) ~/work/.envrc
/bin/cp ~/.config/gh/work.yml ~/.config/gh/hosts.yml && gh auth status
When you cd ~/work
, the command above is automatically run by direnv
.
https://github.com/cli/cli/releases/tag/v2.40.0
With the
v2.40.0
release, multi-account support is introduced togh
for GitHub.com and GitHub Enterprise and it is only the beginning!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is the best thing since sliced cheese. I do hope this will be solved by upstream. Thank you!