1
0
mirror of https://github.com/git/git.git synced 2025-03-26 00:10:16 +00:00
Andy Parkins 72f627d2bc Fix potential command line overflow in hooks--update
In a repository with a large number of refs, the following command line
could easily overflow the command line size limitations

 git-rev-list $newref $(git-rev-parse --not --all)

Fortunately, git-rev-list already has the means to cope with this
situation with the --stdin switch

 git-rev-parse --not --all | git-rev-list --stdin $newref

Which is exactly what this patch does.

Signed-off-by: Andy Parkins <andyparkins@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-13 09:33:09 -08:00
..
2006-02-26 15:16:41 -08:00
2005-08-03 16:27:38 -07:00
2006-02-26 15:16:41 -08:00
2007-02-03 21:49:54 -08:00