Merge branch 'jc/maint-fmt-merge-msg-no-edit-lose-credit'

Stop spending cycles to compute information to be placed on
commented lines in "merge --no-edit", which will be discarded
anyway.

* jc/maint-fmt-merge-msg-no-edit-lose-credit:
  merge --no-edit: do not credit people involved in the side branch
This commit is contained in:
Junio C Hamano
2013-01-10 13:46:29 -08:00
3 changed files with 17 additions and 8 deletions

View File

@ -15,7 +15,8 @@ extern const char git_more_info_string[];
extern void prune_packed_objects(int);
struct fmt_merge_msg_opts {
unsigned add_title:1;
unsigned add_title:1,
credit_people:1;
int shortlog_len;
};