-1

我在 perforce 中检查了一个文件 abc.txt。通过python(使用p4 python API)我想获得该文件最新版本的更改列表编号。请提供可运行的代码。

4

1 回答 1

2

您可以在“p4 fstat”命令的输出中看到更改列表编号。

要使用 P4Python 运行它,请使用以下代码:

result = p4.run("fstat", "<FileName>")
print result

输出将如下所示:

[  
   {  
      'isMapped':'',
      'haveRev':'10',
      'headAction':'edit',
      'headModTime':'1465312503',
      'clientFile':'/users/jen/dvcs/usage/home/depot_create.rb',
      'headRev':'10',
      'headChange':'7666',
      'headTime':'1465312526',
      'depotFile':'//depot/scripts/depot_create.rb',
      'headType':'text'
   }
]

希望这会有所帮助,珍。

于 2016-06-07T15:50:02.920 回答