mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 22:02:09 +02:00

* Fix file(s) and more path/to * Update pages.it/common/rm.md Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com> * thanks emily your suggestion was dogshit https://github.com/tldr-pages/tldr/blob/main/contributing-guides/translation-templates/common-arguments.md Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>
36 lines
599 B
Markdown
36 lines
599 B
Markdown
# p4
|
|
|
|
> Perforce Version Control System.
|
|
> More information: <https://www.perforce.com/manuals/cmdref>.
|
|
|
|
- Log in to the Perforce service:
|
|
|
|
`p4 login -a`
|
|
|
|
- Create a client:
|
|
|
|
`p4 client`
|
|
|
|
- Copy files from depot into the client workspace:
|
|
|
|
`p4 sync`
|
|
|
|
- Create or edit changelist description:
|
|
|
|
`p4 change`
|
|
|
|
- Open a file to edit:
|
|
|
|
`p4 edit -c {{changelist_number}} {{path/to/file}}`
|
|
|
|
- Open a new file to add it to the depot:
|
|
|
|
`p4 add`
|
|
|
|
- Display list of files modified by changelist:
|
|
|
|
`p4 describe -c {{changelist_number}}`
|
|
|
|
- Submit a changelist to the depot:
|
|
|
|
`p4 submit -c {{changelist_number}}`
|