mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
Merge pull request #443 from Natim/patch-1
Make sure git-authors doesn't return twice the same ones.
This commit is contained in:
commit
332bec0f1a
|
|
@ -21,7 +21,7 @@ fi
|
|||
#
|
||||
|
||||
authors() {
|
||||
git shortlog -sne | awk '{$1=""; sub(" ", ""); print}'
|
||||
git shortlog -sne | awk '{$1=""; sub(" ", ""); print}' | awk -F'<' '!x[$1]++' | awk -F'<' '!x[$2]++'
|
||||
}
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in a new issue