How do you move a directory to perforce using the command line?

I am trying to move a directory to another directory in perforce. This is on the command line. The only command I can find to move items is the move command, which moves only individual files. Their way to just move all files in one directory to another? My directory structure has many levels, and it would be tiring to issue a command to move each of them.

+6
source share
1 answer

you can use

p4 move //xyz/... //abc/... 

to move the whole tree.

(cfr documentation :)

+11
source

All Articles