When using Git on multiple workstations, and for different Git repositories, it is convenient to have the same set of aliases available.
So, to synchronize the Git aliases across different workstations, and across different repositories, I consider putting the aliases in a shared Git repository on GitHub, but I am now certain how that can be done, or if that is the best way.
How to share Git aliases across multiple workstations?
Note: The answer at "Git aliases that are stored in origin" has some good input, but it does not directly address the question of how to share Git aliases across different Git repositories.
Its possible with just maintaining shared global
.gitconfig
across multiple workstations!! It can be done easily by setting up alias4git on target workstations.Clone alias4git
Update paths in file
alias.gitconfig
to appropriate path of cloned alias4git repositoryUse
git cfg
command to add new aliases instead of standardgit config
commandfor example,
(Note that
git cfg
command modifiesalias4git/alias.gitconfig
instead of actually modifying global.gitconfig
file !!)Commit and push your changes in
alias4git/alias.gitconfig
to alias4git repositoryUpdate
alias4git/alias.gitconfig
on all other workstations by syncing alias4git repositoryAs
alias4git/alias.gitconfig
file now works as replacement for global.gitconfig
, it works for all the git repositories, across multiple workstations and across multiple git users.Hope this answers your question!