diff options
-rw-r--r-- | git-deltafy-script | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/git-deltafy-script b/git-deltafy-script index c23f215119..f63cf075ec 100644 --- a/git-deltafy-script +++ b/git-deltafy-script @@ -23,8 +23,9 @@ curr_file="" git-rev-list HEAD | git-diff-tree -r --stdin | -sed -n '/^\*/ s/^.*->\(.\{41\}\)\(.*\)$/\2 \1/p' | sort | uniq | -while read file sha1; do +awk '/^:/ { if ($5 == "M" || $5 == "N") print $4, $6 }' | +LC_ALL=C sort -s -k 2 | uniq | +while read sha1 file; do if [ "$file" == "$curr_file" ]; then list="$list $sha1" else |