From b8549e770ac603c221bb52b41fb5a1a659aff0a6 Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Sat, 15 Sep 2012 11:01:06 +0300 Subject: [PATCH] bashrc & zshrc: add alias "git-committers" to see committers of repository. --- bashrc | 3 +++ zshrc | 3 +++ 2 files changed, 6 insertions(+) diff --git a/bashrc b/bashrc index 00b21d2e..6f78c80a 100755 --- a/bashrc +++ b/bashrc @@ -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 diff --git a/zshrc b/zshrc index ed5f2036..63aca325 100755 --- a/zshrc +++ b/zshrc @@ -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