We can actually differentiate between copies and renames in Hg, so lets

add support for another change type, 'copies'. The previous implementation
for Hg was also slightly flawed in the way that it mixed sources with
targets.
This commit is contained in:
Thomas Keller
2011-06-10 01:34:33 +02:00
parent 00b576c5a3
commit 7ff6f09f67
6 changed files with 31 additions and 13 deletions

View File

@@ -67,6 +67,7 @@ class IDF_Scm_Git extends IDF_Scm
'additions' => array(),
'deletions' => array(),
'renames' => array(),
'copies' => array(),
'patches' => array(),
'properties' => array(),
);