From 636c1ec804e15cfcb235371a308ef6620e8834bc Mon Sep 17 00:00:00 2001 From: Suleyman Poyraz Date: Sat, 7 Nov 2020 17:57:06 +0300 Subject: [PATCH] added contributors alias into git. --- git/gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git/gitconfig b/git/gitconfig index 232efce6..f6af73f2 100644 --- a/git/gitconfig +++ b/git/gitconfig @@ -15,6 +15,8 @@ # add a = add # add chunkyadd = add --patch # stage commits chunk by chunk + # Shows list of contributors of a repository. + contributors = shortlog --summary --numbered --email # via http://philjackson.github.io/2013/04/07/handy-git-tips-to-stop-you-getting-fired.html snapshot = !git stash save "snapshot: $(date)" && git stash apply "stash@{0}"