git-svn: make (multi-)fetch safer but slower
commitd4eff2bda5fc28559e96d62604ecaf78a4ff806b
authorEric Wong <normalperson@yhbt.net>
Tue, 30 Jan 2007 22:04:22 +0000 (30 14:04 -0800)
committerEric Wong <normalperson@yhbt.net>
Fri, 23 Feb 2007 08:57:11 +0000 (23 00:57 -0800)
tree8dbc4ee427d8399325a1fa77cfddd6056b09f67c
parentc7eba7163b452840c8492b9ad87846b44cc98ea7
git-svn: make (multi-)fetch safer but slower

get_log with explicit paths is the safest way to get revisions
that change a particular path we're interested in.
Unfortunately that means we still have to run get_log multiple
times for each path we're interested in, and even more if
a path gets deleted.

The first argument of get_log() is an array reference, but we
shouldn't use more than one element in that array ref because
the non-existence of _one_ of those paths for a particular range
would cause an error for all paths in that range, so yes, we
need multiple get_log calls to be on the safe side...

Signed-off-by: Eric Wong <normalperson@yhbt.net>
git-svn.perl