Merge branch 'as/diff-shortstat-ignore-binary'

# By Alexander Strasser
* as/diff-shortstat-ignore-binary:
  diff: Only count lines in show_shortstats
This commit is contained in:
Junio C Hamano
2012-06-15 15:00:53 -07:00
2 changed files with 13 additions and 1 deletions

2
diff.c
View File

@ -1700,7 +1700,7 @@ static void show_shortstats(struct diffstat_t *data, struct diff_options *option
continue;
if (!data->files[i]->is_renamed && (added + deleted == 0)) {
total_files--;
} else {
} else if (!data->files[i]->is_binary) { /* don't count bytes */
adds += added;
dels += deleted;
}