Re: [PATCH v6 1/2] blame: prevent error if range ends past end of file

2018-06-15 Thread Junio C Hamano
Isabella Stephens writes: >> Don't t800[12]-*.sh need adjustment for this change, too? > > Apologies. I will make sure I've run the whole test suite against > my patches in future. I've sent through a 7th (and hopefully > final) version. > Thanks. Will queue and hopefully we can carry this

Re: [PATCH v6 1/2] blame: prevent error if range ends past end of file

2018-06-15 Thread Isabella Stephens
> Don't t800[12]-*.sh need adjustment for this change, too? Apologies. I will make sure I've run the whole test suite against my patches in future. I've sent through a 7th (and hopefully final) version.

Re: [PATCH v6 1/2] blame: prevent error if range ends past end of file

2018-05-31 Thread Junio C Hamano
isteph...@atlassian.com writes: > From: Isabella Stephens > > If the -L option is used to specify a line range in git blame, and the > end of the range is past the end of the file, git will fail with a fatal > error. This commit prevents such behavior - instead we display the blame > for

[PATCH v6 1/2] blame: prevent error if range ends past end of file

2018-05-30 Thread istephens
From: Isabella Stephens If the -L option is used to specify a line range in git blame, and the end of the range is past the end of the file, git will fail with a fatal error. This commit prevents such behavior - instead we display the blame for existing lines within the specified range. Tests