Re: [PATCH v5] blame: add support for --[no-]progress option

2015-12-09 Thread Edmundo Carmona Antoranz
Hey, Eric! On Tue, Dec 8, 2015 at 2:22 AM, Eric Sunshine wrote: > On Tue, Nov 24, 2015 at 11:36 PM, Edmundo Carmona Antoranz > wrote: >> * created struct progress_info in builtin/blame.c >> this struct holds the information used to display

Re: [PATCH v5] blame: add support for --[no-]progress option

2015-12-09 Thread Eric Sunshine
On Wed, Dec 9, 2015 at 11:20 PM, Edmundo Carmona Antoranz wrote: > On Tue, Dec 8, 2015 at 2:22 AM, Eric Sunshine wrote: >> On Tue, Nov 24, 2015 at 11:36 PM, Edmundo Carmona Antoranz >> wrote: >>> +--[no-]progress:: >>> +

Re: [PATCH v5] blame: add support for --[no-]progress option

2015-12-08 Thread Eric Sunshine
On Tue, Nov 24, 2015 at 11:36 PM, Edmundo Carmona Antoranz wrote: > * created struct progress_info in builtin/blame.c > this struct holds the information used to display progress so > that only one additional parameter is passed to > found_guilty_entry(). Commit

[PATCH v5] blame: add support for --[no-]progress option

2015-11-24 Thread Edmundo Carmona Antoranz
* created struct progress_info in builtin/blame.c this struct holds the information used to display progress so that only one additional parameter is passed to found_guilty_entry(). * --[no-]progress option is also inherited by git-annotate. Signed-off-by: Edmundo Carmona Antoranz