We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 60098c9 + 6a000ec commit f8b8113Copy full SHA for f8b8113
bin/git-effort
@@ -42,7 +42,7 @@ show_cursor_and_cleanup() {
42
#
43
44
active_days() {
45
- echo "$1" | uniq | wc -l
+ echo "$1" | sort -r | uniq | wc -l
46
}
47
48
bin/git-summary
@@ -21,7 +21,7 @@ date() {
21
22
23
24
- date $1 | uniq | awk '
+ date $1 | sort -r | uniq | awk '
25
{ sum += 1 }
26
END { print sum }
27
'
0 commit comments