bashrc & zshrc: add alias "git-committers" to see committers of repository.

This commit is contained in:
Mika Suomalainen 2012-09-15 11:01:06 +03:00
parent 0940f2bd70
commit b8549e770a
2 changed files with 6 additions and 0 deletions

3
bashrc
View File

@ -346,6 +346,9 @@ alias ipconfig=ifconfig # MSDOS
alias copy=cp # MSDOS
alias move=mv # MSDOS
# List git committers of repository
alias git-committers="git shortlog -s"
# Allow custom aliases to be put in .aliases or .bash_aliases .
# .aliases

3
zshrc
View File

@ -295,6 +295,9 @@ alias ipconfig=ifconfig # MSDOS
alias copy=cp # MSDOS
alias move=mv # MSDOS
# List git committers of repository
alias git-committers="git shortlog -s"
# .aliases
if [ -f ~/.aliases ]; then
source ~/.aliases