p4v - How to set view of a label in perforce using command-line? -
p4 tag -g -l "release_1.0" //my_depot/... seeing view of label in p4v shows other depots also.
how set view of label using command-line ?
the 'p4 tag' command either create new label spec, if label spec doesn't exist, or use existing label spec, if has been created.
so if want control view 'release_1.0' label, use 'p4 label -o' , 'p4 label -i' commands.
for example, construct plain text file following contents:
label: release_1.0 owner: bryan options: unlocked noautorelad view: //my_depot/... and use file standard input 'p4 label -i' set view label '//my_depot/...'
Comments
Post a Comment