From 03fe7d9c7e6346ba1a1d240965a9028c4a5769a8 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Thu, 23 Aug 2012 16:15:14 -0400 Subject: [PATCH] terminate child svn log -v process when the common ancestor revision has been determined --- jsvn | 1 + 1 file changed, 1 insertion(+) diff --git a/jsvn b/jsvn index ecfd780..8b2579e 100755 --- a/jsvn +++ b/jsvn @@ -534,6 +534,7 @@ def find_branched_revision(svn, branch_url, branch_path, base_path): new_path, old_path, rev = m.group(1, 2, 3) if new_path == search_path: if old_path == base_path: + p.kill() return (int(rev), old_path) search_path = old_path return (-1, '')