Skip to content

Commit

Permalink
git-p4: accommodate new move/delete type in p4
Browse files Browse the repository at this point in the history
562d53f (git-p4: Fix sync errors due to new server version, 2010-01-21)
taught git-p4 sync to recognize the new move/delete type, but this type
can also show up in an initial clone and labels output.

Instead of replicating the support in three places, hoist the definition
somewhere global.

Signed-off-by: Pete Wyckoff <pw@padd.com>
Acked-By: Tor Arvid Lund <torarvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Pete Wyckoff authored and Junio C Hamano committed Feb 21, 2011
1 parent 1494fcb commit 56c0934
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions contrib/fast-import/git-p4
Original file line number Diff line number Diff line change
Expand Up @@ -834,6 +834,8 @@ class P4Submit(Command):
return True

class P4Sync(Command):
delete_actions = ( "delete", "move/delete", "purge" )

def __init__(self):
Command.__init__(self)
self.options = [
Expand Down Expand Up @@ -1038,10 +1040,10 @@ class P4Sync(Command):

if includeFile:
filesForCommit.append(f)
if f['action'] not in ('delete', 'move/delete', 'purge'):
filesToRead.append(f)
else:
if f['action'] in self.delete_actions:
filesToDelete.append(f)
else:
filesToRead.append(f)

# deleted files...
for f in filesToDelete:
Expand Down Expand Up @@ -1127,7 +1129,7 @@ class P4Sync(Command):

cleanedFiles = {}
for info in files:
if info["action"] in ("delete", "purge"):
if info["action"] in self.delete_actions:
continue
cleanedFiles[info["depotFile"]] = info["rev"]

Expand Down Expand Up @@ -1453,7 +1455,7 @@ class P4Sync(Command):
if change > newestRevision:
newestRevision = change

if info["action"] in ("delete", "purge"):
if info["action"] in self.delete_actions:
# don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
#fileCnt = fileCnt + 1
continue
Expand Down

0 comments on commit 56c0934

Please sign in to comment.