Perforce
Overview
형상 관리 툴 Peforce(p4) 사용법 정리.
Commands
공통
perforce command 사용시 공통적으로 적용되는 사항 정리.
디렉토리
perforce 에서는 빈 디렉토리는 생성/변경/삭제가 불가능하다. 만약 디렉토리 내에, 파일이 하나도 없다면 해당 디렉토리는 자동으로 사라지게 된다.
...
만약 디렉토리내의 모든 파일을 선택해야 한다면, '...' 을 사용하면 된다.
help
도움말 내용을 보여준다. simple 입력시 자주 사용되는 명령어의 간단한 쓰임새를 보여준다. 자세한 명령어의 도움말을 보고자 한다면 p4 help <command> 를 입력하면 된다.
$ p4 help simple Most common Perforce client commands: client Create or edit a client workspace specification and view add Open files for adding to the depot edit Open existing files for editing delete Open existing files for removal from the depot opened List open files update Update files in the current client workspace resolve Resolve updates to open workspace files submit Submit open files to the depot revert Revert open files and restore originals to workspace
integrate
integrate -- Integrate one set of files into another
<source lang=bash> $ p4 integrate [options] fromFile[revRange] toFile $ p4 integrate [options] -b branch [-r] [toFile[revRange] ...] $ p4 integrate [options] -b branch -s fromFile[revRange] [toFile ...] $ p4 integrate [options] -S stream [-r] [-P parent] [file[revRange] ...] </source>
delete
지정된 파일을 삭제한다. 사실, perforce 에서는 파일 삭제가 없다. 단지 앞으로의 버전 컨트롤에서 제외될 뿐이다.
<source lang=bash> $ p4 delete [-c changelist#] [-n -v -k] file ... </source>
-n 파일 삭제시 나타나게 될 결과를 표시한다. 실제로 파일을 삭제하지는 않는다.
-k client 에 설치된 파일의 변경없이 server에 있는 파일만을 삭제한다. 만약 서버와 클라이언트 간의 파일 불일치가 발견되면 경고를 표시한다.
-v 아직 sync 되지 않은 파일도 같이 삭제할 수 있도록 한다.
client
client 설정을 확인/수정 한다.
View 항목에 명시되어 있지 않은 디렉토리는 동기화되지 않는다. 만약 perforce 설정 이후, 특정 디텍토리가 동기화되지 않는다면, View 항목을 먼저 확인하자.
Client: stk_pbxdevelopment Update: 2015/10/13 14:14:25 Access: 2015/10/13 14:12:39 Owner: stk Host: test.pchero21.com Description: Created by stk. Root: /home/stk Options: noallwrite noclobber compress unlocked nomodtime rmdir SubmitOptions: submitunchanged LineEnd: local View: //depot/devel/helloworld/... //stk_pbxdevelopment/depot/devel/helloworld/...
References
<references />