File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ single_file() {
99 while read data
1010 do
1111 if [[ $( file " $data " ) = * text* ]]; then
12- git blame --line-porcelain " $data " 2> /dev/null | grep " ^author\ " | sed -n ' s/^author //p' ;
12+ git blame --line-porcelain " $data " 2> /dev/null | grep " ^author\ " | LC_ALL=C sed -n ' s/^author //p' ;
1313 fi
1414 done
1515}
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+
34SUBDIRECTORY_OK=Yes
45source " $( git --exec-path) /git-sh-setup"
56cd_to_toplevel
@@ -63,7 +64,7 @@ authors() {
6364#
6465
6566repository_age () {
66- git log --reverse --pretty=oneline --format=" %ar" | head -n 1 | sed ' s/ago//'
67+ git log --reverse --pretty=oneline --format=" %ar" | head -n 1 | LC_ALL=C sed ' s/ago//'
6768}
6869
6970# summary
You can’t perform that action at this time.
0 commit comments