add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

36
pages.zh/common/p4.md Normal file
View File

@@ -0,0 +1,36 @@
# p4
> Perforce 版本控制系统。
> 更多信息:<https://www.perforce.com/manuals/cmdref>。
- 登录到 Perforce 服务:
`p4 login -a`
- 创建一个客户端:
`p4 client`
- 从库中复制文件到客户端工作区:
`p4 sync`
- 创建或编辑变更列表描述:
`p4 change`
- 打开文件进行编辑:
`p4 edit -c {{changelist_number}} {{path/to/file}}`
- 打开新文件以将其添加到库中:
`p4 add`
- 显示由变更列表修改的文件列表:
`p4 describe -c {{changelist_number}}`
- 提交变更列表到库:
`p4 submit -c {{changelist_number}}`