summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8d9e7d5)
raw | patch | inline | side by side (parent: 8d9e7d5)
author | Pal-Kristian Engstad <pal_engstad@naughtydog.com> | |
Fri, 22 Jan 2010 02:33:00 +0000 (18:33 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 1 Feb 2010 20:08:14 +0000 (12:08 -0800) |
Fix sync errors due to new Perforce servers.
The P4D/NTX64/2009.2/228098 (2009/12/16) server reports
'move/delete' instead of 'delete'. This causes the Perforce
depot and the git repo to get out of sync. Fixed by adding
the new status string.
Signed-off-by: Pal-Kristian Engstad <pal_engstad@naughtydog.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
The P4D/NTX64/2009.2/228098 (2009/12/16) server reports
'move/delete' instead of 'delete'. This causes the Perforce
depot and the git repo to get out of sync. Fixed by adding
the new status string.
Signed-off-by: Pal-Kristian Engstad <pal_engstad@naughtydog.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/fast-import/git-p4 | patch | blob | history |
index d1512e0acf7015533bd55e821f9a663285fa4930..e7c48144e62a0829a5f817c5debaee28516b351d 100755 (executable)
if includeFile:
filesForCommit.append(f)
- if f['action'] not in ('delete', 'purge'):
+ if f['action'] not in ('delete', 'move/delete', 'purge'):
filesToRead.append(f)
else:
filesToDelete.append(f)