Git account switch alias
When you have multiple github account, for eg company github and personal on the same device then it is tedious to switch account, so here is the way to create git alias and switch from terminal
- Create git alias
below is the syntax to make alias global
git config --global alias.st status
you can see the same alias in you ~/.gitconfig
file under [alias] directive
[alias] st = status
or using below command
git config --list | grep alias
Note: you can directly add here too but this is space sensitive and prone to risk
- Now create alias for your company and personal account as below
git config --global alias.company !git config user.name company_username && git config user.email company@email.addressgit config --global alias.my !git config user.name personal_username && git config user.email personal@email.com
Note: add !
ahead to alias
Thats’all
- How to switch
Switch from company to personal using alias and check using user.name or email as below
git mygit config --get user.namegit config --get user.email
Bonus Tips
some useful alias from my workspace ( Ubuntu)
alias.http=config --get remote.origin.urlalias.hide=update-index --assume-unchangedalias.unhide=update-index --no-assume-unchangedalias.hidden=!git ls-files -v | grep ^h
or to edit gitconfig file using vim editor
git config --global core.editor "vim"git config --edit --global
Thanks