aboutsummaryrefslogtreecommitdiff
path: root/t/t6017-rev-list-stdin.sh
Commit message (Collapse)AuthorAge
* setup_revisions(): take pathspec from command line and --stdin correctlyJunio C Hamano2011-05-11
| | | | | | | | | | | | | When the command line has "--" disambiguator, we take the remainder of argv[] as "prune_data", but when --stdin is given at the same time, we need to append to the existing prune_data and end up attempting to realloc(3) it. That would not work. Fix it by consistently using append_prune_data() throughout the input processing. Also avoid counting the number of existing paths in the function over and over again. Signed-off-by: Junio C Hamano <gitster@pobox.com>
* Add trivial tests for --stdin option to log familyJunio C Hamano2009-11-23
Signed-off-by: Junio C Hamano <gitster@pobox.com>