From 7a161b77b0b8b35df0f72581c1a8bdf8ab054030 Mon Sep 17 00:00:00 2001 From: Joe Block Date: Wed, 6 Jul 2016 22:26:45 -0700 Subject: [PATCH 1/2] Make git-changes sort the committers by descending commit count --- bin/git-changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-changes b/bin/git-changes index 172465ffe..7ce66cd12 100755 --- a/bin/git-changes +++ b/bin/git-changes @@ -2,4 +2,4 @@ # # https://github.com/cofi/dotfiles/blob/master/bin -git log --pretty=format:'%an <%ae>' $1 | sort | uniq -c +git log --pretty=format:'%an <%ae>' $1 | sort | uniq -c | sort -nr From 41ab7b9c0a44eedde090d79b4e7a62bcb1caadd8 Mon Sep 17 00:00:00 2001 From: Joe Block Date: Wed, 6 Jul 2016 22:32:02 -0700 Subject: [PATCH 2/2] Fix env error on Linux Mint --- bin/git-big-file | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-big-file b/bin/git-big-file index b3613f8ef..26a4227c0 100755 --- a/bin/git-big-file +++ b/bin/git-big-file @@ -1,4 +1,4 @@ -#!/usr/bin/env ruby -w +#!/usr/bin/env ruby # Author: Mislav Marohnić # https://github.com/mislav/dotfiles #