I use git with a big development team and I\'d like to have a set of aliases be common across every developer. They change every so often, so I\'d like to store them in origin
1) Create .gitalias files with something like this:
.gitalias
[alias] # full status s = !git status -sb && git submodule foreach --recursive git status -sb
2) Commit this file.
3) Add following lines to .git/config:
.git/config
[include] path = ../.gitalias
4) Ask all members of your team to repeat step 3.