Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 P4Python 将 json 集合从 Flask 服务器发送到远程 Perforce 仓库。
有没有办法通过 Python 做到这一点?
通过 P4Python 执行此操作的策略将与通过命令行或其他脚本 API 执行此操作大致相同:您需要创建一个工作区,将文件写入工作区,然后使用p4 add和p4 submit.
p4 add
p4 submit
没有 API 可以让您将数据直接通过管道传输到服务器以转换为软件仓库文件。