From: Junio C Hamano Date: Tue, 7 Nov 2006 01:08:32 +0000 (-0800) Subject: git-pickaxe: -L /regexp/,/regexp/ X-Git-Tag: v1.4.4-rc1~2^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/931233bc666b40de039d50f82f12279c94e5e5f0?ds=sidebyside;hp=931233bc666b40de039d50f82f12279c94e5e5f0 git-pickaxe: -L /regexp/,/regexp/ With this change, you can specify the beginning and the ending line of the range you wish to inspect with pattern matching. For example, these are equivalent with the git.git sources: git pickaxe -L 7,21 v1.4.0 -- commit.c git pickaxe -L '/^struct sort_node/,/^}/' v1.4.0 -- commit.c git pickaxe -L '7,/^}/' v1.4.0 -- commit.c git pickaxe -L '/^struct sort_node/,21' v1.4.0 -- commit.c Signed-off-by: Junio C Hamano ---